trelloctl 0.2.2__tar.gz → 0.2.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: trelloctl
3
- Version: 0.2.2
3
+ Version: 0.2.3
4
4
  Summary: A command-line interface for Trello
5
5
  Author: Werner Robitza
6
6
  Author-email: Werner Robitza <werner.robitza@gmail.com>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "trelloctl"
3
- version = "0.2.2"
3
+ version = "0.2.3"
4
4
  description = "A command-line interface for Trello"
5
5
  readme = "README.md"
6
6
  authors = [
@@ -18,14 +18,14 @@ dependencies = [
18
18
  trelloctl = "trelloctl.cli:main"
19
19
 
20
20
  [build-system]
21
- requires = ["uv_build>=0.9.26,<0.11.0"]
21
+ requires = ["uv_build>=0.9.26,<1.0.0"]
22
22
  build-backend = "uv_build"
23
23
 
24
24
  [dependency-groups]
25
25
  dev = [
26
- "mypy>=1.19.1",
27
26
  "pre-commit>=4.2.0",
28
27
  "pytest>=9.0.2",
29
28
  "pytest-mock>=3.14.0",
30
29
  "ruff>=0.15.0",
30
+ "ty>=0.0.24",
31
31
  ]
@@ -76,6 +76,7 @@ def status(ctx: Context) -> None:
76
76
  def logout(ctx: Context) -> None:
77
77
  """Remove stored credentials."""
78
78
  import keyring
79
+ import keyring.errors
79
80
  from trelloctl.config import SERVICE_NAME
80
81
 
81
82
  try:
File without changes