Skip to content

Commit 5e63d62

Browse files
author
Zoran Simic
committed
Updated requirements constraints
1 parent 67e24fb commit 5e63d62

2 files changed

Lines changed: 7 additions & 11 deletions

File tree

requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
click~=8.0
2-
pyyaml~=6.0
3-
requests<3.0
4-
runez~=5.5
5-
urllib3~=1.26
1+
click<9
2+
pyyaml<7
3+
requests<3
4+
runez<6
5+
urllib3<3

tests/conftest.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,15 @@
11
import runez
2-
from runez.conftest import cli, logged, temp_folder
2+
from runez.conftest import cli, ClickRunner, logged, temp_folder # noqa: F401, fixtures
33
from runez.http import GlobalHttpCalls
44

55
from portable_python.cli import main
66

77
GlobalHttpCalls.forbid()
88

9-
# These are fixtures, satisfying linters with an assert
10-
assert logged
11-
assert temp_folder
12-
139
# Ensure common logging setup is done throughout all tests (even tests not invoking cli)
1410
runez.log.setup(debug=True, console_format="%(levelname)s %(message)s", locations=None)
1511

16-
cli.default_main = main
12+
ClickRunner.default_main = main
1713

1814

1915
def dummy_tarball(folders, basename, content=None):

0 commit comments

Comments
 (0)