-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loosen dependency restriction on httpx (#417)
Using `^0.x.y` in poetry is quite problematic, since it locks it to _minor_ version and only allows patch updates. This makes it very hard to depend on this package since it both makes it hard to update packages _and_ makes the likelihood of unresolvable requirements much higher. The same is really true for upper bounds in general, but to a lesser extent. There's a quite good blog post on it from one of the big guys in scientific python: https://iscinumpy.dev/post/bound-version-constraints/
- Loading branch information
Showing
4 changed files
with
10 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "cognite-extractor-utils" | ||
version = "7.5.6" | ||
version = "7.5.7" | ||
description = "Utilities for easier development of extractors for CDF" | ||
authors = ["Mathias Lohne <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
@@ -71,7 +71,7 @@ python-dotenv = "^1.0.0" | |
azure-identity = "^1.14.0" | ||
azure-keyvault-secrets = "^4.7.0" | ||
orjson = "^3.10.3" | ||
httpx = "^0.27.0" | ||
httpx = ">=0.27.0, <1" | ||
pydantic = "^2.8.2" | ||
pyhumps = "^3.8.0" | ||
croniter = "^6.0.0" | ||
|
@@ -94,7 +94,6 @@ pytest-order = "^1.0.1" | |
parameterized = "*" | ||
requests = "^2.31.0" | ||
types-requests = "^2.31.0.20240125" | ||
httpx = "^0.27.0" | ||
faker = "^33.0.0" | ||
|
||
[build-system] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters