Skip to content

Commit

Permalink
remove constraint of <3.11 for python (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
TShapinsky authored Jul 17, 2023
1 parent f839a44 commit b5fb8fa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ readme = 'README.md'
license = 'LICENSE.txt'

[tool.poetry.dependencies]
python = ">=3.8, <3.11"
python = ">=3.8"

hszinc = "~1.3"
importlib-metadata = "~6.0"
Expand Down

0 comments on commit b5fb8fa

Please sign in to comment.