Skip to content

Commit f195bab

Browse files
committed
Drop python 3.6 support and add support for python 3.10
1 parent fda9fbd commit f195bab

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/python-test.yml

+1-1
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: [3.6, 3.7, 3.8, 3.9]
17+
python-version: ["3.7", "3.8", "3.9", "3.10"]
1818
fail-fast: false
1919
steps:
2020
- uses: actions/checkout@v2

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ language: python
22
sudo: false
33
matrix:
44
include:
5-
- python: 3.6
65
- python: 3.7
76
- python: 3.8
87
- python: 3.9
8+
- python: 3.10
99
- python: nightly
1010
- python: pypy3
1111
allow_failures:

pyproject.toml

+2-3
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,15 @@ classifiers = [
2525
"Topic :: Software Development :: Libraries :: Python Modules",
2626
"Operating System :: OS Independent",
2727
"Programming Language :: Python :: 3",
28-
"Programming Language :: Python :: 3.6",
2928
"Programming Language :: Python :: 3.7",
3029
"Programming Language :: Python :: 3.8",
3130
"Programming Language :: Python :: 3.9",
31+
"Programming Language :: Python :: 3.10",
3232
"Topic :: Software Development :: Libraries"
3333
]
3434

3535
[tool.poetry.dependencies]
36-
python = "^3.6.2"
37-
dataclasses = {version = "*", python = "~3.6"}
36+
python = "^3.7.0"
3837
dictpath = "*"
3938
django = {version = ">=3.0", optional = true}
4039
falcon = {version = ">=3.0", optional = true}

0 commit comments

Comments
 (0)