Skip to content

Commit 0891bf9

Browse files
authored
test(ci): Run tests against python 3.11 (#1415)
* test(ci): Run tests against python 3.11 * exclude numpy 1.20 for 3.11 * update release notes
1 parent e2ab17f commit 0891bf9

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

.github/workflows/python-package.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,13 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: ['3.8', '3.9', '3.10']
18+
python-version: ['3.8', '3.9', '3.10', '3.11']
1919
numpy_version: ['>=1.22.0', '==1.20.*']
2020
exclude:
2121
- python-version: '3.10'
2222
numpy_version: '==1.20.*'
23+
- python-version: '3.11'
24+
numpy_version: '==1.20.*'
2325
services:
2426
redis:
2527
image: redis

.github/workflows/windows-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: True
1818
matrix:
19-
python-version: ['3.8', '3.9', '3.10']
19+
python-version: ['3.8', '3.9', '3.10', '3.11']
2020
steps:
2121
- uses: actions/checkout@v3
2222
with:

docs/release.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ Maintenance
3737
* Replace ``np.product`` with ``np.prod`` due to deprecation.
3838
By :user:`James Bourbeau <jrbourbeau>` :issue:`1405`.
3939

40+
* Activate Py 3.11 builds.
41+
By :user:`Joe Hamman <jhamman>` :issue:`1415`.
42+
4043
Documentation
4144
~~~~~~~~~~~~~
4245

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ classifiers = [
3333
'Programming Language :: Python :: 3.8',
3434
'Programming Language :: Python :: 3.9',
3535
'Programming Language :: Python :: 3.10',
36+
'Programming Language :: Python :: 3.11',
3637
]
3738
license = { text = "MIT" }
3839

0 commit comments

Comments
 (0)