diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ef96cac..63e9c7e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: python-version: - "3.10" - "3.11" - - "3.12" + # - "3.12" steps: - name: Check out repository diff --git a/requirements.txt b/requirements.txt index 04835c0..29ab1e7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ -aiohttp==3.9.0b0;python_version>='3.12' +aiohttp>=3.9.0b0;python_version>='3.12' aiohttp>=3.7.0;python_version<'3.12' dacite>=1.7.0 diff --git a/setup.py b/setup.py index fc059b8..a20d884 100644 --- a/setup.py +++ b/setup.py @@ -7,9 +7,6 @@ README_FILE = PROJECT_DIR / "README.md" VERSION = "3.2.0" -with open("requirements.txt", encoding="utf-8") as file: - requirements = file.read().splitlines() - setup( name="gios", version=VERSION, @@ -23,7 +20,7 @@ packages=["gios"], package_data={"gios": ["py.typed"]}, python_requires=">=3.10", - install_requires=requirements, + install_requires=["aiohttp>=3.7.0", "dacite>=1.7.0"], classifiers=[ "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: Apache Software License", diff --git a/tox.ini b/tox.ini index 2e47c54..3bd8530 100644 --- a/tox.ini +++ b/tox.ini @@ -1,12 +1,12 @@ [tox] -envlist = py310, py311, py312, lint, typing, coverage +envlist = py310, py311, lint, typing, coverage skip_missing_interpreters = True [gh-actions] python = 3.10: py310, lint, typing, coverage 3.11: py311 - 3.12: py312 + ; 3.12: py312 [testenv] commands =