Skip to content

Commit

Permalink
chore: Remove Python 3.11 upper bound (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesclark-Zapata authored Oct 16, 2023
1 parent 72a4007 commit 4af3cdc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
# Run jobs for a couple of Python versions.
strategy:
matrix:
python: ["3.8", "3.9", "3.10"]
python: ["3.9", "3.10", "3.11"]

name: TestCoverage - Python ${{ matrix.python }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
# Run jobs for a couple of Python versions.
strategy:
matrix:
python: ["3.8", "3.9", "3.10"]
python: ["3.9", "3.10", "3.11"]

name: Style - Python ${{ matrix.python }}

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ include_package_data = True
package_dir =
= src
packages = find_namespace:
python_requires = >=3.8,!=3.9.7,<3.11
python_requires = >=3.9,!=3.9.7

install_requires =
numpy>=1.20
Expand Down

0 comments on commit 4af3cdc

Please sign in to comment.