Skip to content

Commit

Permalink
Drop python 3.6 support and add support for python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
nezhar committed Jan 21, 2022
1 parent fda9fbd commit f195bab
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: ["3.7", "3.8", "3.9", "3.10"]
fail-fast: false
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ language: python
sudo: false
matrix:
include:
- python: 3.6
- python: 3.7
- python: 3.8
- python: 3.9
- python: 3.10
- python: nightly
- python: pypy3
allow_failures:
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,15 @@ classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries"
]

[tool.poetry.dependencies]
python = "^3.6.2"
dataclasses = {version = "*", python = "~3.6"}
python = "^3.7.0"
dictpath = "*"
django = {version = ">=3.0", optional = true}
falcon = {version = ">=3.0", optional = true}
Expand Down

0 comments on commit f195bab

Please sign in to comment.