Skip to content

Commit

Permalink
add py10 to the testing ci
Browse files Browse the repository at this point in the history
  • Loading branch information
gerrymanoim committed Feb 16, 2022
1 parent c09cc2c commit 6b1c79c
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"context": "..",
"args": {
// Update 'VARIANT' to pick a Python version: 3, 3.6, 3.7, 3.8
"VARIANT": "3.8",
"VARIANT": "3.9",
// Options
"INSTALL_NODE": "false",
"NODE_VERSION": "lts/*"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
python-version: 3.9
python-version: "3.10"
- name: Install dependencies
run: |
pip install -e .[dev] -c etc/requirements_locked.txt
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,14 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.7, 3.9]
python-version: ["3.9", "3.10"]
include:
- python-version: 3.7
- os: ubuntu-latest
python-version: "3.7"
requirements_file: requirements_locked_old.txt
- python-version: 3.9
- python-version: "3.9"
requirements_file: requirements_locked.txt
- python-version: "3.10"
requirements_file: requirements_locked.txt

steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
runs-on: ubuntu-18.04
steps:
- uses: actions/[email protected]
- name: Set up Python 3.7
- name: Set up Python 3.10
uses: actions/[email protected]
with:
python-version: 3.7
python-version: "3.10"

- name: Build sdist
run: python setup.py sdist
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
Expand Down

0 comments on commit 6b1c79c

Please sign in to comment.