adjust lower version bounds

This commit is contained in:
Maximilian Hils 2021-11-22 11:09:04 +01:00
parent dae098cd33
commit 9249c0ddd3
2 changed files with 9 additions and 10 deletions

View File

@ -72,7 +72,7 @@ setup(
"Brotli>=1.0,<1.1", "Brotli>=1.0,<1.1",
"certifi>=2019.9.11", # no semver here - this should always be on the last release! "certifi>=2019.9.11", # no semver here - this should always be on the last release!
"click>=7.0,<8.1", "click>=7.0,<8.1",
"cryptography>=36.0,<36.1", "cryptography>=3.3,<37,!=35",
"flask>=1.1.1,<2.1", "flask>=1.1.1,<2.1",
"h11>=0.11,<0.13", "h11>=0.11,<0.13",
"h2>=4.1,<5", "h2>=4.1,<5",
@ -81,11 +81,11 @@ setup(
"ldap3>=2.8,<2.10", "ldap3>=2.8,<2.10",
"msgpack>=1.0.0, <1.1.0", "msgpack>=1.0.0, <1.1.0",
"passlib>=1.6.5, <1.8", "passlib>=1.6.5, <1.8",
"protobuf>=3.19,<3.20", "protobuf>=3.14,<3.20",
"pyOpenSSL>=21.0,<21.1", "pyOpenSSL>=21.0,<21.1",
"pyparsing>=3.0,<3.1", "pyparsing>=2.4.2,<3.1",
"pyperclip>=1.6.0,<1.9", "pyperclip>=1.6.0,<1.9",
"ruamel.yaml>=0.17,<0.18", "ruamel.yaml>=0.16,<0.18",
# Kaitai parsers depend on setuptools, remove once https://github.com/kaitai-io/kaitai_struct_python_runtime/issues/62 is fixed # Kaitai parsers depend on setuptools, remove once https://github.com/kaitai-io/kaitai_struct_python_runtime/issues/62 is fixed
"setuptools", "setuptools",
"sortedcontainers>=2.3,<2.5", "sortedcontainers>=2.3,<2.5",
@ -93,7 +93,7 @@ setup(
"urwid>=2.1.1,<2.2", "urwid>=2.1.1,<2.2",
"wsproto>=1.0,<1.1", "wsproto>=1.0,<1.1",
"publicsuffix2>=2.20190812,<3", "publicsuffix2>=2.20190812,<3",
"zstandard>=0.16,<0.17", "zstandard>=0.11,<0.17",
], ],
extras_require={ extras_require={
':sys_platform == "win32"': [ ':sys_platform == "win32"': [
@ -105,14 +105,13 @@ setup(
"pdoc>=4.0.0", "pdoc>=4.0.0",
"pyinstaller==4.7", "pyinstaller==4.7",
"pytest-asyncio>=0.10.0,<0.16,!=0.14", "pytest-asyncio>=0.10.0,<0.16,!=0.14",
"pytest-cov>=3.0,<3.1", "pytest-cov>=2.7.1,<3.1",
"pytest-timeout>=2.0,<2.1", "pytest-timeout>=1.3.3,<2.1",
"pytest-xdist>=2.1.0,<3", "pytest-xdist>=2.1.0,<3",
"pytest>=6.1.0,<7", "pytest>=6.1.0,<7",
"requests>=2.9.1,<3", "requests>=2.9.1,<3",
"tox>=3.5,<4", "tox>=3.5,<4",
"wheel>=0.36.2,<0.38", "wheel>=0.36.2,<0.38",
"coverage==6.1.2", # workaround issue with import errors introduced in 5.6b1/6.0
], ],
} }
) )

View File

@ -17,7 +17,7 @@ commands =
[testenv:flake8] [testenv:flake8]
deps = deps =
flake8>=4.0,<4.1 flake8>=3.8.4,<4.1
flake8-tidy-imports>=4.2.0,<5 flake8-tidy-imports>=4.2.0,<5
commands = commands =
flake8 --jobs 8 mitmproxy examples test release {posargs} flake8 --jobs 8 mitmproxy examples test release {posargs}
@ -39,7 +39,7 @@ deps =
commands = commands =
mypy {posargs} mypy {posargs}
[testenv:individual_coverage] [testenv:individual_coverage]
commands = commands =
python ./test/individual_coverage.py {posargs} python ./test/individual_coverage.py {posargs}