Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NO-ISSUE: Fix docker-py internal dependency (requests) version #2347

Merged
merged 1 commit into from
May 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/python-venv/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"scripts": {
"install": "python3 -m venv ./venv && run-script-os",
"install:linux:darwin": ". ./venv/bin/activate && pnpm install:pip",
"install:pip": "pip3 install cekit==4.11.0 behave==1.2.6 lxml==5.2.1 docker==7.0.0 docker-squash==1.2.0 elementpath==4.4.0 pyyaml==6.0.1 ruamel.yaml==0.18.6 python-dateutil==2.9.0.post0 Jinja2==3.1.3 pykwalify==1.8.0 colorlog==6.8.2 click==8.1.7",
"install:pip": "pip3 install -r requirements.txt",
"install:win32": ".\\venv\\Scripts\\Activate.bat && pnpm install:pip"
},
"devDependencies": {
Expand Down
14 changes: 14 additions & 0 deletions packages/python-venv/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
requests<2.32.0
cekit==4.11.0
behave==1.2.6
lxml==5.2.1
docker==7.0.0
docker-squash==1.2.0
elementpath==4.4.0
pyyaml==6.0.1
ruamel.yaml==0.18.6
python-dateutil==2.9.0.post0
Jinja2==3.1.3
pykwalify==1.8.0
colorlog==6.8.2
click==8.1.7
Loading