Skip to content

Commit c613a78

Browse files
authored
fix: upgrade uplink to v0.10.0 for python 3.10+ to resolve pkg_resources deprecation (#150)
1 parent 9c4e124 commit c613a78

File tree

2 files changed

+35
-6
lines changed

2 files changed

+35
-6
lines changed

poetry.lock

Lines changed: 30 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@ aenum = "^3.1.11"
3636
Events = "^0.4"
3737
httpx = "^0.28.1"
3838
requests = "^2.28.1"
39-
uplink = "^0.9.7"
39+
uplink = [
40+
{ version = "^0.10.0", extras = ["pydantic"], python = ">=3.10" },
41+
{ version = "^0.9.7", python = ">=3.9,<3.10" }
42+
]
4043
pydantic = "^2.11.3"
4144
pyyaml = "^6.0.1"
4245
pandas = "^2.1.0"
@@ -72,7 +75,7 @@ markers = [
7275
"enterprise: mark a test as an enterprise integration test",
7376
"webserver: mark a test as a webserver integration test",
7477
"slow: mark a test as a slow test",
75-
"focus: focus a specific test during development",
78+
"focus: focus a test during development",
7679
]
7780

7881
[tool.black]

0 commit comments

Comments
 (0)