Skip to content

Commit 16401a1

Browse files
authored
fix(deps): Enable testing with latest click and matplotlib (#782)
* fix(deps): Update version constraints to test with latest click and matplotlib on newer Python versions * fix(deps): Update poetry.lock
1 parent be1e066 commit 16401a1

File tree

2 files changed

+80
-5
lines changed

2 files changed

+80
-5
lines changed

poetry.lock

Lines changed: 72 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,17 @@ protobuf = { version = ">=4.21", optional = true }
4747
hightime = ">=0.2.2"
4848
tzlocal = "^5.0"
4949
python-decouple = ">=3.8"
50-
click = ">=8.0.0"
50+
click = [
51+
{ version = ">=8.0.0,<8.2.0", python = ">=3.9,<3.10" },
52+
{ version = ">=8.0.0", python = "^3.10" },
53+
]
5154
distro = { version = ">=1.9.0", platform = "linux" }
5255
requests = ">=2.25.0"
5356

54-
5557
[tool.poetry.extras]
5658
grpc = ["grpcio", "protobuf"]
5759

5860
[tool.poetry.group.codegen.dependencies]
59-
click = "^8.1"
6061
Mako = "^1.2"
6162
grpcio-tools = [
6263
{ version = "1.49.1", python = ">=3.9,<3.12" },
@@ -78,7 +79,10 @@ toml = ">=0.10.2"
7879
optional = true
7980

8081
[tool.poetry.group.examples.dependencies]
81-
matplotlib = { version = ">=3.9.0", python = ">=3.9" }
82+
matplotlib = [
83+
{ version = ">=3.9.0,<3.10.0", python = ">=3.9,<3.10" },
84+
{ version = ">=3.9.0", python = "^3.10" },
85+
]
8286
nptdms = ">=1.9.0"
8387

8488
[tool.poetry.group.lint.dependencies]

0 commit comments

Comments
 (0)