diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 0f67c3c..f786f19 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: [3.8, 3.9, '3.10'] steps: - uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index 693b4fd..461bc71 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ url="https://github.com/squishykid/solax", packages=setuptools.find_packages(exclude=['tests', 'tests.*']), install_requires=[ - 'aiohttp>=3.5.4', + 'aiohttp>=3.5.4, <4', 'voluptuous>=0.11.5' ], setup_requires=[ @@ -26,4 +26,5 @@ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], + python_requires='>=3.8', )