Skip to content

Commit 08e487f

Browse files
authored
Run tests on python 3.10 (#61)
* Run tests on python 3.10 * Use quotes maybe? * aiohttp less than 4 * minimum python 3.8
1 parent 5672b86 commit 08e487f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: [3.6, 3.7, 3.8, 3.9]
11+
python-version: [3.8, 3.9, '3.10']
1212

1313
steps:
1414
- uses: actions/checkout@v2

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
url="https://github.com/squishykid/solax",
1616
packages=setuptools.find_packages(exclude=['tests', 'tests.*']),
1717
install_requires=[
18-
'aiohttp>=3.5.4',
18+
'aiohttp>=3.5.4, <4',
1919
'voluptuous>=0.11.5'
2020
],
2121
setup_requires=[
@@ -26,4 +26,5 @@
2626
"License :: OSI Approved :: MIT License",
2727
"Operating System :: OS Independent",
2828
],
29+
python_requires='>=3.8',
2930
)

0 commit comments

Comments
 (0)