Skip to content

Commit

Permalink
squash: constraint pint to avoid incompatible calls
Browse files Browse the repository at this point in the history
  • Loading branch information
happz committed Nov 14, 2023
1 parent c912860 commit 17e0fd9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ repos:
- "click>=8.0.3,!=8.1.4" # 8.1.3 / 8.1.6 TODO type annotations tmt.cli.Context -> click.core.Context click/issues/2558
- "fmf>=1.3.0"
- "jinja2>=2.11.3" # 3.1.2 / 3.1.2
- "pint>=0.16.1,<=0.20" # 0.16.1 / 0.22
- "pint>=0.16.1,<0.20" # 0.16.1 / 0.22
- "requests>=2.25.1" # 2.28.2 / 2.31.0
- "ruamel.yaml>=0.16.6" # 0.17.32 / 0.17.32
- "urllib3>=1.26.5, <2.0" # 1.26.16 / 2.0.4
Expand Down Expand Up @@ -64,7 +64,7 @@ repos:
- "click>=8.0.3,!=8.1.4" # 8.1.3 / 8.1.6 TODO type annotations tmt.cli.Context -> click.core.Context click/issues/2558
- "fmf>=1.3.0"
- "jinja2>=2.11.3" # 3.1.2 / 3.1.2
- "pint>=0.16.1,<=0.20" # 0.16.1 / 0.22
- "pint>=0.16.1,<0.20" # 0.16.1 / 0.22
- "requests>=2.25.1" # 2.28.2 / 2.31.0
- "ruamel.yaml>=0.16.6" # 0.17.32 / 0.17.32
- "urllib3>=1.26.5, <2.0" # 1.26.16 / 2.0.4
Expand Down Expand Up @@ -111,4 +111,4 @@ repos:
additional_dependencies:
# Make sure we use fmf compatible with tmt in the repo, not the 1.26.0 version.
- "fmf>=1.3.0"
- "pint<=0.20"
- "pint<0.20"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies = [ # F39 / PyPI
"click>=8.0.3,!=8.1.4", # 8.1.3 / 8.1.6 TODO type annotations tmt.cli.Context -> click.core.Context click/issues/2558
"fmf>=1.3.0",
"jinja2>=2.11.3", # 3.1.2 / 3.1.2
"pint>=0.16.1,<=0.20", # 0.16.1 / 0.22
"pint>=0.16.1,<0.20", # 0.16.1 / 0.22
"requests>=2.25.1", # 2.28.2 / 2.31.0
"ruamel.yaml>=0.16.6", # 0.17.32 / 0.17.32
"urllib3>=1.26.5, <2.0", # 1.26.16 / 2.0.4
Expand Down

0 comments on commit 17e0fd9

Please sign in to comment.