Skip to content

Commit

Permalink
relax httpx version requirements (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
pauleikis authored Jan 21, 2022
1 parent ecc23ca commit 8bb2126
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ repos:
language_version: python3
additional_dependencies:
- .[dev]
- httpx==0.20.0 # for some reasons, httpx is not getting installed
- httpx>=0.20.0,<1.0.0 # for some reasons, httpx is not getting installed
- typing_extensions
- types-python-dateutil
- types-pkg_resources
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ classifiers =
[options]
setup_requires = setuptools_scm>=6.3.1
install_requires=
httpx==0.21.3
httpx>=0.20.0,<1.0.0
python-dateutil>=2.8.1
package_dir=
=src
Expand All @@ -33,7 +33,7 @@ python_requires= >=3.6

[options.extras_require]
fsspec = fsspec>=2021.7.0
http2 = httpx[http2]==0.21.3
http2 = httpx[http2]>=0.20.0,<1.0.0
all =
%(fsspec)s
%(http2)s
Expand Down

0 comments on commit 8bb2126

Please sign in to comment.