Skip to content

Commit 0926eb2

Browse files
committed
Drop python 3.6 support and add 3.10
1 parent 9e915db commit 0926eb2

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: [2.7, 3.6]
17+
python-version: [3.7]
1818
steps:
1919
- uses: actions/checkout@v2
2020

.github/workflows/python-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ${{ matrix.os }}
1515
strategy:
1616
matrix:
17-
python-version: [3.6, 3.7, 3.8, 3.9]
17+
python-version: [3.7, 3.8, 3.9, 3.10]
1818
os: [windows-latest, ubuntu-latest]
1919
fail-fast: false
2020
steps:

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ classifiers = [
2424
"Topic :: Software Development :: Libraries :: Python Modules",
2525
"Operating System :: OS Independent",
2626
"Programming Language :: Python :: 3",
27-
"Programming Language :: Python :: 3.6",
2827
"Programming Language :: Python :: 3.7",
2928
"Programming Language :: Python :: 3.8",
3029
"Programming Language :: Python :: 3.9",
30+
"Programming Language :: Python :: 3.10",
3131
"Topic :: Software Development :: Libraries"
3232
]
3333

3434
[tool.poetry.dependencies]
35-
python = ">= 3.6"
35+
python = ">= 3.7"
3636
jsonschema = ">=3.2.0, <5.0.0"
3737
pyrsistent = "<0.17.0"
3838
PyYAML = ">=5.1"

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = {py36,py37,py38,py39}-{default,simplejson}
2+
envlist = {py37,py38,py39,py310}-{default,simplejson}
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)