Skip to content

Commit

Permalink
chore: build and test on Python 3.10 and 3.11-dev (#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
Saransh-cpp authored Sep 5, 2022
1 parent 1f09bb2 commit bfeade3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,12 @@ jobs:
fail-fast: false
matrix:
python-version:
- 3.6
- 3.7
- 3.8
- 3.9
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11-dev"
name: Check Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 2 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
- Add git archive support [#244][]
- Add CITATION.cff Citation File Format file [#243][]
- Test `Vector` on `Awkward` `v1` and `v2` together [#226][]
- Build and test on Python `3.10` and `3.11-dev` [#252][]

[#176]: https://github.com/scikit-hep/vector/pull/176
[#172]: https://github.com/scikit-hep/vector/pull/172
Expand Down Expand Up @@ -62,6 +63,7 @@
[#244]: https://github.com/scikit-hep/vector/pull/244
[#243]: https://github.com/scikit-hep/vector/pull/243
[#226]: https://github.com/scikit-hep/vector/pull/226
[#252]: https://github.com/scikit-hep/vector/pull/252

## Version 0.8

Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import nox

ALL_PYTHONS = ["3.6", "3.7", "3.8", "3.9", "3.10"]
ALL_PYTHONS = ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]

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

Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
Expand All @@ -51,7 +52,7 @@ awkward = [
]
dev = [
"awkward>=1.2",
'numba>=0.50; python_version >= "3.6"',
'numba>=0.50; python_version < "3.11"',
"pytest>=6",
"pytest-cov>=3",
"xdoctest>=1",
Expand Down

0 comments on commit bfeade3

Please sign in to comment.