Skip to content
Snippets Groups Projects
Unverified Commit 8ea0fa7d authored by Piero Toffanin's avatar Piero Toffanin Committed by GitHub
Browse files

Merge pull request #254 from dingedi/feature/add-python3-10

add python 3.10
parents e86365b4 ea63203a
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: ['3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
......@@ -29,7 +29,7 @@ jobs:
- name: Check code style with flake8 (lint)
run: |
# warnings if there are Python syntax errors or undefined names
# warnings if there are Python syntax errors or undefined names
# (remove --exit-zero to fail when syntax error)
flake8 . --count --exit-zero --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
......@@ -38,7 +38,7 @@ jobs:
- name: Test with pytest
run: pytest
publish:
needs: [ tests ]
runs-on: ubuntu-latest
......
......@@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: ['3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
......
......@@ -33,6 +33,7 @@ setup(
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
]
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment