Skip to content

Commit

Permalink
feat: Add support for Python 3.11 (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
pvanliefland authored Nov 17, 2023
1 parent 7ba99cd commit 03aa815
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,17 @@ jobs:
test:
name: Run test suite
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.9", "3.10", "3.11" ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: ${{ matrix.python-version }}

- name: "Install dependencies"
run: pip install ".[dev]"
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
requires-python = ">=3.9,<3.11"
requires-python = ">=3.9,<3.12" # the main constraint for supported Python versions is the multiprocess library
dependencies = [
"multiprocess~=0.70.14",
"multiprocess~=0.70.15",
"requests~=2.28.2",
"PyYAML~=6.0",
"stringcase~=1.2.0",
Expand Down

0 comments on commit 03aa815

Please sign in to comment.