Skip to content

Commit 7ae36d2

Browse files
authored
Add Python 3.11 to supported versions (#157)
2 parents afd603a + 4b1cfdc commit 7ae36d2

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/lint-and-tests.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
strategy:
2222
matrix:
23-
python-version: ["3.7", "3.8", "3.9", "3.10"]
23+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
2424

2525
# Steps represent a sequence of tasks that will be executed as part of the job
2626
steps:
@@ -32,13 +32,14 @@ jobs:
3232
with:
3333
python-version: ${{ matrix.python-version }}
3434
cache: "pip"
35+
cache-dependency-path: "requirements/*.txt"
3536

3637
- name: Install dependencies
3738
run: |
3839
python -m pip install --upgrade pip
39-
python -m pip install -r requirements.txt
40-
python -m pip install -r requirements/development.txt
41-
python -m pip install -r requirements/documentation.txt
40+
python -m pip install --upgrade -r requirements.txt
41+
python -m pip install --upgrade -r requirements/development.txt
42+
python -m pip install --upgrade -r requirements/documentation.txt
4243
4344
- name: Lint with flake8
4445
run: |

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@
8484
"Programming Language :: Python :: 3.8",
8585
"Programming Language :: Python :: 3.9",
8686
"Programming Language :: Python :: 3.10",
87+
"Programming Language :: Python :: 3.11",
8788
"Programming Language :: Python :: Implementation :: CPython",
8889
"Development Status :: 5 - Production/Stable",
8990
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)