diff --git a/poetry.lock b/poetry.lock index 5c16a38..32add1b 100644 --- a/poetry.lock +++ b/poetry.lock @@ -46,7 +46,10 @@ pathspec = ">=0.9.0,<1" platformdirs = ">=2" tomli = ">=0.2.6,<2.0.0" typed-ast = {version = ">=1.4.2", markers = "python_version < \"3.8\" and implementation_name == \"cpython\""} -typing-extensions = ">=3.10.0.0" +typing-extensions = [ + {version = ">=3.10.0.0", markers = "python_version < \"3.10\""}, + {version = "!=3.10.0.1", markers = "python_version >= \"3.10\""}, +] [package.extras] colorama = ["colorama (>=0.4.3)"] @@ -782,8 +785,8 @@ testing = ["pytest (>=4.6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytes [metadata] lock-version = "1.1" -python-versions = ">=3.7,<3.10" -content-hash = "fd8dd8e29049e857b7edf7da5803591d4eeb416e790e6eb5a9f3c9a1222de0e4" +python-versions = ">=3.7" +content-hash = "9e819727883898bb2d4f2bd80e98f1488c66584232802e51325d534e15639edd" [metadata.files] asyncio-dgram = [ diff --git a/pyproject.toml b/pyproject.toml index 1e4a7a2..860b532 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,6 +17,7 @@ classifiers = [ "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Topic :: Games/Entertainment", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: System :: Monitoring", @@ -28,7 +29,7 @@ packages = [ ] [tool.poetry.dependencies] -python = ">=3.7,<3.10" +python = ">=3.7" asyncio-dgram = "1.2.0" click = "7.1.2" dnspython = "2.1.0" @@ -41,7 +42,7 @@ pytest-asyncio = "^0.16.0" pytest-cov = "^3.0.0" twine = "^3.5.0" black = "^21.10b0" -pytype = {version = "^2021.12.8", platform = "linux"} +pytype = {version = "^2021.12.8", platform = "linux", python = "<3.10"} tox = "^3.24.5" tox-poetry = "^0.4.1" diff --git a/tox.ini b/tox.ini index 5ee5b91..48dcd5d 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] isolated_build = True envlist = - format-check,lint,py{37,38,39},coverage + format-check,lint,py{37,38,39,310},coverage [testenv] setenv = @@ -25,7 +25,7 @@ commands = [testenv:coverage] depends = - py{37,38,39} + py{37,38,39,310} setenv = COVERAGE_FILE=.coverage commands =