tft-cli 0.0.22__tar.gz → 0.0.24__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.1
2
2
  Name: tft-cli
3
- Version: 0.0.22
3
+ Version: 0.0.24
4
4
  Summary: Testing Farm CLI tool
5
5
  License: Apache-2.0
6
6
  Author: Miroslav Vadkerti
@@ -11,11 +11,12 @@ Classifier: Programming Language :: Python :: 3
11
11
  Classifier: Programming Language :: Python :: 3.9
12
12
  Classifier: Programming Language :: Python :: 3.10
13
13
  Classifier: Programming Language :: Python :: 3.11
14
- Requires-Dist: click (>=8.0.4,<8.1.0)
14
+ Requires-Dist: click (>=8.0.4,<9.0.0)
15
15
  Requires-Dist: colorama (>=0.4.4,<0.5.0)
16
- Requires-Dist: dynaconf (>=3.1.7,<4.0.0)
16
+ Requires-Dist: dynaconf (>=3.1.2,<4.0.0)
17
17
  Requires-Dist: requests (>=2.27.1,<3.0.0)
18
- Requires-Dist: rich (>=12,<13)
19
- Requires-Dist: ruamel-yaml (>=0.18.6,<0.19.0)
18
+ Requires-Dist: rich (>=12)
19
+ Requires-Dist: ruamel-yaml (>=0.18.5,<0.19.0)
20
20
  Requires-Dist: setuptools
21
- Requires-Dist: typer[all] (>=0.7.0,<0.8.0)
21
+ Requires-Dist: shellingham (>=1.3.0,<2.0.0)
22
+ Requires-Dist: typer (>=0.11)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "tft-cli"
3
- version = "0.0.22"
3
+ version = "0.0.24"
4
4
  description = "Testing Farm CLI tool"
5
5
  authors = ["Miroslav Vadkerti <mvadkert@redhat.com>"]
6
6
  license = "Apache-2.0"
@@ -14,16 +14,18 @@ testing-farm = "tft.cli.tool:app"
14
14
 
15
15
  [tool.poetry.dependencies]
16
16
  python = "^3.9"
17
- typer = {extras = ["all"], version = "^0.7.0"}
18
17
  # click 8.1.0 broke typer 0.4.0
19
18
  # https://github.com/tiangolo/typer/pull/375
20
- click = "~8.0.4"
21
- dynaconf = "^3.1.7"
19
+ click = "^8.0.4"
20
+ typer = ">=0.11"
21
+ dynaconf = "^3.1.2"
22
22
  colorama = "^0.4.4"
23
23
  requests = "^2.27.1"
24
- rich = "^12"
25
- ruamel-yaml = "^0.18.6"
24
+ rich = ">=12"
25
+ ruamel-yaml = "^0.18.5"
26
26
  setuptools = "*"
27
+ # can be removed after bumping typer to ">=0.12"
28
+ shellingham = ">=1.3.0,<2.0.0"
27
29
 
28
30
  [tool.poetry.dev-dependencies]
29
31
  pyre-check = "^0.9.10"