diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index e70bac43..3f9dda9f 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -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 diff --git a/.travis.yml b/.travis.yml index 88e2d1d0..b165805d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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: diff --git a/pyproject.toml b/pyproject.toml index da203e1c..9ef10470 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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}