-
Notifications
You must be signed in to change notification settings - Fork 8
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
Split req.txt into req-dev.txt for development dependencies (#44) #90
base: main
Are you sure you want to change the base?
Split req.txt into req-dev.txt for development dependencies (#44) #90
Conversation
5fe6b65
to
a8a24fe
Compare
@MAVRICK-1 is the split correct? All build/test packages now in dev req txt ? |
@glimchb sry my mistake ansible-lint>=6.22.2
antsibull-changelog>=0.25.0
antsibull-docs>=2.7.0 And this will be python-dateutil>=2.8.2 |
9b19ad3
to
6ce9f8c
Compare
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should you also change https://github.com/opiproject/ansible-opi-dpu/blob/main/Dockerfile#L4 ?
and other places that use this req.txt file ?
try to find existing examples how this should work properly... |
3277c90
to
a3032c9
Compare
@glimchb now it is okay ? |
much better |
182e771
to
832f88c
Compare
7b03d6e
to
0c49e69
Compare
Dockerfile
Outdated
COPY ./requirements.txt /tmp/requirements.txt | ||
RUN pip install --no-cache-dir --disable-pip-version-check --requirement /tmp/requirements.txt | ||
COPY ./requirements.txt ./requirements-dev.txt /tmp/ | ||
RUN pip install --no-cache-dir --disable-pip-version-check --requirement /tmp/requirements*.txt |
Check warning
Code scanning / Scorecard
Pinned-Dependencies
btw, try |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ci failed, please check
@glimchb Docker CLI FAIL HAS BEEN RESOLVED |
@glimchb done |
COPY ./requirements.txt /tmp/requirements.txt | ||
RUN pip install --no-cache-dir --disable-pip-version-check --requirement /tmp/requirements.txt | ||
COPY ./requirements.txt ./requirements-dev.txt /tmp/ | ||
RUN pip install --no-cache-dir --disable-pip-version-check --requirement /tmp/requirements.txt --requirement /tmp/requirements-dev.txt |
Check warning
Code scanning / Scorecard
Pinned-Dependencies
looks good, please rebase. I fixed ci, so it will pass now |
@glimchb rebase done |
Looks like ci passes!!! last thing: |
- Split req.txt - Bumped python version (opiproject#91) Signed-off-by: Rishi Mondal <[email protected]> Signed-off-by: Boris Glimcher <[email protected]>
cc6930f
to
6815225
Compare
@glimchb done 👍 |
@glimchb any updates ? |
Fixes #44
@glimchb can you review my PR