Skip to content

Commit 6c19ffb

Browse files
authored
chore(tests): add Python 3.11 in CI runs/trove classifier (daviddrysdale#265)
1 parent e6c0866 commit 6c19ffb

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
runs-on: ubuntu-18.04
1010
strategy:
1111
matrix:
12-
python-version: [2.7, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, "3.10", pypy2, pypy3]
12+
python-version: [2.7, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, "3.10", 3.11, pypy2.7, pypy3.9]
1313

1414
steps:
15-
- uses: actions/checkout@629c2de402a417ea7690ca6ce3f33229e27606a5 # v2
15+
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3
1616
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@f38219332975fe8f9c04cca981d674bf22aea1d3 # v2
17+
uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020
- name: Install dependencies

.github/workflows/coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@629c2de402a417ea7690ca6ce3f33229e27606a5 # v2
11+
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3
1212
- name: Set up latest Python 3
13-
uses: actions/setup-python@f38219332975fe8f9c04cca981d674bf22aea1d3 # v2
13+
uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4
1414
with:
1515
python-version: 3
1616
- name: Install dependencies

python/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@
8888
'Programming Language :: Python :: 3.8',
8989
'Programming Language :: Python :: 3.9',
9090
'Programming Language :: Python :: 3.10',
91+
'Programming Language :: Python :: 3.11',
9192
'Programming Language :: Python :: Implementation :: CPython',
9293
'Programming Language :: Python :: Implementation :: PyPy',
9394
],

0 commit comments

Comments
 (0)