Skip to content

Commit 43e83fe

Browse files
authored
Merge pull request #59 from Sindri-Labs/kp-lower-py-version
Lower Required Python Version from 3.10 to 3.8
2 parents ba0200c + bf2d58c commit 43e83fe

File tree

6 files changed

+506
-297
lines changed

6 files changed

+506
-297
lines changed

.github/workflows/build-publish-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set Up Python
2323
uses: actions/setup-python@v5
2424
with:
25-
python-version: '3.10'
25+
python-version: '3.8.1'
2626

2727
- name: Extract Version from Tag
2828
run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,14 @@
1010
The Sindri Python SDK.
1111
Contains SDK code for Sindri APIs. Please see [sindri.app](https://sindri.app) for more details.
1212

13+
## Requirements
14+
This SDK is compatible with Python `>=3.8`.
15+
However, Sindri does not officially support usage with Python versions that have passed their [End of Life](https://devguide.python.org/versions/) support.
16+
17+
## Installation
18+
You can install `sindri` from [PyPI](https://pypi.org/project/sindri/).
19+
For example: `pip install sindri`
20+
1321
## Documentation and Usage
1422
Documentation for this repo is automatically generated from the Python docstrings using [lazydocs](https://pypi.org/project/lazydocs/) and published to [sindri.app/docs/reference/sdk/](https://sindri.app/docs/reference/sdk/python) along with the rest of the documentation for Sindri.
1523
Docstrings for functions and methods follow the [google standard](https://google.github.io/styleguide/pyguide.html#383-functions-and-methods) for formatting.

0 commit comments

Comments
 (0)