Skip to content

Commit

Permalink
feat: Allow any Python >= 3.9, instead of exactly 3.12
Browse files Browse the repository at this point in the history
And re-enable CI for Python 3.9-3.11
  • Loading branch information
tux3 committed Aug 14, 2024
1 parent 5a980a8 commit 64fde47
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.12']
python-version: ['3.12', '3.11', '3.10', '3.9']
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.12']
python-version: ['3.12', '3.11', '3.10', '3.9']
steps:
- uses: actions/checkout@v3

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/safety.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.12']
python-version: ['3.12', '3.11', '3.10', '3.9']
steps:
- uses: actions/checkout@v3

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.12']
python-version: ['3.12', '3.11', '3.10', '3.9']
steps:
- uses: actions/checkout@v3

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ homepage = "https://github.com/TankerHQ/identity-python"
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.12"
python = ">=3.9,<4"
PyNacl = "1.5.0"

[tool.poetry.dev-dependencies]
Expand Down

0 comments on commit 64fde47

Please sign in to comment.