Skip to content

Commit

Permalink
Bump to Python 3.10 (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
inetAnt authored Jan 6, 2022
1 parent ecccebe commit a139156
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.6, 3.7, 3.8, 3.9]
python: [3.6, 3.7, 3.8, 3.9, '3.10']

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -38,10 +38,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Setup Python 3.9
- name: Setup Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: '3.10'
- name: Install pypa/build
run: |
python -m pip install build --user
Expand All @@ -62,10 +62,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Setup Python 3.9
- name: Setup Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: '3.10'
- name: Install pypa/build
run: |
python -m pip install build --user
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
],
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py3{6,7,8,9},black,pylama
envlist = py3{6,7,8,9,10},black,pylama
skip_missing_interpreters = true

[testenv]
Expand All @@ -15,14 +15,14 @@ commands =
deps =
-rrequirements-dev.txt

basepython = python3.9
basepython = python3.10
commands =
black --check .

[testenv:pylama]
deps =
-rrequirements-dev.txt

basepython = python3.9
basepython = python3.10
commands =
pylama .

0 comments on commit a139156

Please sign in to comment.