Skip to content

Commit bfeade3

Browse files
authored
chore: build and test on Python 3.10 and 3.11-dev (#252)
1 parent 1f09bb2 commit bfeade3

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,12 @@ jobs:
3131
fail-fast: false
3232
matrix:
3333
python-version:
34-
- 3.6
35-
- 3.7
36-
- 3.8
37-
- 3.9
34+
- "3.6"
35+
- "3.7"
36+
- "3.8"
37+
- "3.9"
38+
- "3.10"
39+
- "3.11-dev"
3840
name: Check Python ${{ matrix.python-version }}
3941
steps:
4042
- uses: actions/checkout@v3

docs/changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
- Add git archive support [#244][]
3434
- Add CITATION.cff Citation File Format file [#243][]
3535
- Test `Vector` on `Awkward` `v1` and `v2` together [#226][]
36+
- Build and test on Python `3.10` and `3.11-dev` [#252][]
3637

3738
[#176]: https://github.com/scikit-hep/vector/pull/176
3839
[#172]: https://github.com/scikit-hep/vector/pull/172
@@ -62,6 +63,7 @@
6263
[#244]: https://github.com/scikit-hep/vector/pull/244
6364
[#243]: https://github.com/scikit-hep/vector/pull/243
6465
[#226]: https://github.com/scikit-hep/vector/pull/226
66+
[#252]: https://github.com/scikit-hep/vector/pull/252
6567

6668
## Version 0.8
6769

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import nox
44

5-
ALL_PYTHONS = ["3.6", "3.7", "3.8", "3.9", "3.10"]
5+
ALL_PYTHONS = ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
66

77
nox.options.sessions = ["lint", "tests", "doctests"]
88

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ classifiers = [
3939
"Programming Language :: Python :: 3.8",
4040
"Programming Language :: Python :: 3.9",
4141
"Programming Language :: Python :: 3.10",
42+
"Programming Language :: Python :: 3.11",
4243
"Topic :: Scientific/Engineering",
4344
"Topic :: Scientific/Engineering :: Information Analysis",
4445
"Topic :: Scientific/Engineering :: Mathematics",
@@ -51,7 +52,7 @@ awkward = [
5152
]
5253
dev = [
5354
"awkward>=1.2",
54-
'numba>=0.50; python_version >= "3.6"',
55+
'numba>=0.50; python_version < "3.11"',
5556
"pytest>=6",
5657
"pytest-cov>=3",
5758
"xdoctest>=1",

0 commit comments

Comments
 (0)