Skip to content

Commit

Permalink
Add Python 3.10 to supported/tested versions in setup.py + CI (#202)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbast committed Jan 18, 2022
1 parent f58bce3 commit 3ef57a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest,ubuntu-latest,windows-latest]
pyver: [3.6,3.7,3.8,3.9]
pyver: ["3.6","3.7","3.8","3.9","3.10"]
include:
# include the appropriate dependencies for testing SquashFS on each OS
- os: macos-latest
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
source $CONDA_ROOT/etc/profile.d/conda.sh
conda info -a
mv conda-bld $CONDA_ROOT/conda-bld
conda create -n cptest local::conda-pack pytest python=${{ matrix.pyver }} ${{ matrix.squashfs_deps }}
conda create -n cptest local::conda-pack conda-forge::pytest python=${{ matrix.pyver }} ${{ matrix.squashfs_deps }}
conda activate cptest
pytest -v -ss conda_pack/tests
upload:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: System :: Archiving :: Packaging",
"Topic :: System :: Software Distribution",
"Topic :: Software Development :: Build Tools"],
Expand Down

0 comments on commit 3ef57a9

Please sign in to comment.