Skip to content

Commit 064be46

Browse files
Make requirements versions a lower bound (#160)
Make requirements.txt depend on compatible versions with a lower bound specified, rather than fixed versions Signed-off-by: Stewart Francis <[email protected]>
1 parent d491252 commit 064be46

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
docs/build/
33
.idea
44
.vscode/settings.json
5+
.ansible
56
__pycache__
67
venv*
78
.venv

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# (c) Copyright IBM Corp. 2020,2023
22
# Apache License, Version 2.0 (see https://opensource.org/licenses/Apache-2.0)
3-
requests==2.32.3
4-
xmltodict==0.12.0
5-
urllib3==1.26.19
3+
requests >= 2.32.3, < 3.0
4+
xmltodict >= 0.12.0, < 1.0
5+
urllib3 >= 1.26.19, < 2.0

0 commit comments

Comments
 (0)