Skip to content

Commit 7032875

Browse files
joostlekbieniu
andauthored
Unpin aiohttp (#254)
* Unpin aiohttp * Black * Temporarily disable py312 for tox * Remove py312 from envlist * Temporarily disable py312 in CI --------- Co-authored-by: Maciej Bieniek <bieniu@users.noreply.github.com>
1 parent 9f6dcd1 commit 7032875

File tree

4 files changed

+5
-8
lines changed

4 files changed

+5
-8
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
python-version:
1515
- "3.10"
1616
- "3.11"
17-
- "3.12"
17+
# - "3.12"
1818

1919
steps:
2020
- name: Check out repository

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
aiohttp==3.9.0b0;python_version>='3.12'
1+
aiohttp>=3.9.0b0;python_version>='3.12'
22
aiohttp>=3.7.0;python_version<'3.12'
33
dacite>=1.7.0

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@
77
README_FILE = PROJECT_DIR / "README.md"
88
VERSION = "3.2.0"
99

10-
with open("requirements.txt", encoding="utf-8") as file:
11-
requirements = file.read().splitlines()
12-
1310
setup(
1411
name="gios",
1512
version=VERSION,
@@ -23,7 +20,7 @@
2320
packages=["gios"],
2421
package_data={"gios": ["py.typed"]},
2522
python_requires=">=3.10",
26-
install_requires=requirements,
23+
install_requires=["aiohttp>=3.7.0", "dacite>=1.7.0"],
2724
classifiers=[
2825
"Development Status :: 5 - Production/Stable",
2926
"License :: OSI Approved :: Apache Software License",

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[tox]
2-
envlist = py310, py311, py312, lint, typing, coverage
2+
envlist = py310, py311, lint, typing, coverage
33
skip_missing_interpreters = True
44

55
[gh-actions]
66
python =
77
3.10: py310, lint, typing, coverage
88
3.11: py311
9-
3.12: py312
9+
; 3.12: py312
1010

1111
[testenv]
1212
commands =

0 commit comments

Comments
 (0)