Skip to content

Commit

Permalink
Run tests on python 3.10 (#61)
Browse files Browse the repository at this point in the history
* Run tests on python 3.10

* Use quotes maybe?

* aiohttp less than 4

* minimum python 3.8
  • Loading branch information
squishykid committed Apr 21, 2022
1 parent 5672b86 commit 08e487f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=[
Expand All @@ -26,4 +26,5 @@
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.8',
)

0 comments on commit 08e487f

Please sign in to comment.