Skip to content

Commit 30a7601

Browse files
authored
Merge pull request #107 from iris-hep:pr_py311
Python 3.11 support
2 parents acc2bc8 + 01107b6 commit 30a7601

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v2
15-
- name: Set up Python 3.7
15+
- name: Set up Python 3.8
1616
uses: actions/setup-python@v2
1717
with:
18-
python-version: 3.7
18+
python-version: 3.8
1919
- name: Install dependencies
2020
run: |
2121
python -m pip install --upgrade pip setuptools wheel
@@ -37,7 +37,7 @@ jobs:
3737
strategy:
3838
matrix:
3939
os: [ubuntu-latest, macos-latest, windows-latest]
40-
python-version: [3.7, 3.8, 3.9, "3.10"]
40+
python-version: [3.7, 3.8, 3.9, "3.10", 3.11]
4141

4242
steps:
4343
- uses: actions/checkout@v2

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@
6161
"Intended Audience :: Developers",
6262
"Intended Audience :: Information Technology",
6363
"Programming Language :: Python",
64+
"Programming Language :: Python :: 3.11",
65+
"Programming Language :: Python :: 3.10",
6466
"Programming Language :: Python :: 3.9",
6567
"Programming Language :: Python :: 3.8",
6668
"Programming Language :: Python :: 3.6",
@@ -70,6 +72,6 @@
7072
"Topic :: Utilities",
7173
],
7274
data_files=[],
73-
python_requires=">=3.6, <3.11",
75+
python_requires=">=3.6, <3.12",
7476
platforms="Any",
7577
)

0 commit comments

Comments
 (0)