Skip to content

Commit 0eb9f0e

Browse files
authored
Merge pull request #231 from adamruzicka/deps
Bump aiohttp versions
2 parents 4a0ae4f + 5d7c82e commit 0eb9f0e

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ repository = "https://github.com/project-receptor/receptor"
1111
version = "1.0.0"
1212

1313
[tool.poetry.dependencies]
14-
aiohttp = "^3.6.2"
15-
prometheus_client = "^0.7.1"
14+
aiohttp = ">= 3.6.2, < 4.0"
15+
prometheus_client = ">= 0.7.1, < 0.9"
1616
python = "^3.6"
1717

1818
[tool.poetry.dev-dependencies]
@@ -55,4 +55,4 @@ exclude = '''
5555
| installer
5656
| packaging
5757
)/
58-
'''
58+
'''

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
long_description=long_description,
1919
long_description_content_type="text/markdown",
2020
python_requires=">=3.6",
21-
install_requires=["prometheus_client==0.7.1", "aiohttp==3.6.2", "python-dateutil>=2.8.1"],
21+
install_requires=["prometheus_client>=0.7.1,<0.9", "aiohttp>=3.6.2,<4.0", "python-dateutil>=2.8.1"],
2222
zip_safe=False,
2323
entry_points={"console_scripts": ["receptor = receptor.__main__:main"]},
2424
classifiers=["Programming Language :: Python :: 3"],

0 commit comments

Comments
 (0)