Skip to content

Commit

Permalink
Add python3.10 supports (#1932)
Browse files Browse the repository at this point in the history
  • Loading branch information
chenjiandongx committed Nov 15, 2021
1 parent d085837 commit 911493f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/python-app.yml
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.6', '3.7', '3.8', '3.9']
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand All @@ -18,6 +18,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r test/requirements.txt
- name: Run unit test
run: |
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -93,6 +93,7 @@ def run(self):
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
],
cmdclass={"upload": UploadCommand},
Expand Down

0 comments on commit 911493f

Please sign in to comment.