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

fix(module) fix register module issue #614

Merged
merged 1 commit into from
Jan 9, 2025
Merged
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
5 changes: 4 additions & 1 deletion werf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -120,12 +120,15 @@ shell:
cat images_digests.json
---
image: python-dependencies
from: python:3.9-slim
from: {{ .Images.BASE_ALT_P11 }}
fromCacheVersion: "2024-11-07.1"
git:
- add: /lib/python/requirements.txt
to: /requirements.txt
fl64 marked this conversation as resolved.
Show resolved Hide resolved
shell:
beforeInstall:
- apt-get update
- apt-get install -y python3 python3-module-pip-run
Comment on lines +123 to +131

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ALT Linux, when installing the package this way we will get version 3.12.7 of python. Is this correct?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why not?

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Previously, it was necessary to use version 3.9, as far as I remember it was necessary for hooks.
I understand that this was fixed?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I only remember that we needed a version greater than 3.8 ( using := )

setup:
- pip3 install -r /requirements.txt -t /dist
---
Expand Down
Loading