-
Notifications
You must be signed in to change notification settings - Fork 70
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
Require 'requests' package during pip installation #587
Merged
pirat89
merged 1 commit into
oamg:master
from
bocekm:require_requests_dependency_by_pip
Dec 11, 2019
Merged
Require 'requests' package during pip installation #587
pirat89
merged 1 commit into
oamg:master
from
bocekm:require_requests_dependency_by_pip
Dec 11, 2019
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The requests package was missing when running leapp-repository unit tests - leapp framework was being installed by leapp-repository makefile as a dependency, but without this dependency of leapp framework. That caused an incorrect workaround on the leapp-repository side: oamg/leapp-repository#410
Can one of the admins verify this patch? |
bocekm
added a commit
to bocekm/leapp-repository
that referenced
this pull request
Dec 11, 2019
This reverts commit bb7ac2c. That commit was an incorrect workaround on the leapp-repository side. It should have been fixed on the leapp framework side. The 'requests' package was missing when running leapp-repository unit tests. It was caused when leapp framework was being installed as a dependency by leapp-repository makefile, but without this 'requests' dependency of leapp framework itself. It's fixed by oamg/leapp#587.
pirat89
approved these changes
Dec 11, 2019
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.
lgtm.
pirat89
pushed a commit
to oamg/leapp-repository
that referenced
this pull request
Dec 12, 2019
This reverts commit bb7ac2c. That commit was an incorrect workaround on the leapp-repository side. It should have been fixed on the leapp framework side. The 'requests' package was missing when running leapp-repository unit tests. It was caused when leapp framework was being installed as a dependency by leapp-repository makefile, but without this 'requests' dependency of leapp framework itself. It's fixed by oamg/leapp#587.
MichalHe
pushed a commit
to MichalHe/leapp
that referenced
this pull request
Aug 12, 2021
## Packaging - Bump required leapp-framework capability to 1.4 (oamg#642) ## Upgrade handling ### Fixes - Fix comparison of the newest installed and booted kernel (oamg#600) - Fix remediation command for ipa-server removal (oamg#617) - Fix crash due to missing network interfaces during upgrade phases (oamg#625) - Fix error with /boot/efi existing on non-EFI systems (oamg#627) - Fix false positive detection of issue in /etc/default/grub that led into GRUB prompt (oamg#587) - Fix syntax error in upgrade script (oamg#619) - Inhibit upgrade with mount options in fstab that break mounting on RHEL 8 (oamg#639) - Inhibit upgrade on s390x machines with /boot on a separate partition (oamg#641) - Inhibit upgrade if multiple kernel-debug pkgs are installed (oamg#599) - Remove the initial-setup package to avoid it asking for EULA acceptance during upgrade (oamg#626) - Remove the *leapp-resume* service after the *FirstBoot* phase to prevent kill of the leapp process on `systemctl daemon-reload` (oamg#611) ### Enhancements - Add upgrade support for SAP HANA (own upgrade path) (oamg#503) - Allow upgrade with SCA enabled manifest (oamg#615) - Add actors to migrate Quagga to FRR (oamg#467) - Add stable uniq Key id for every dialog (oamg#618) - Respect the *kernel-rt* package (oamg#600) ## Additional changes interesting for devels - Add a possibility to overwrite virtualenv name using `$VENVNAME` (oamg#613) - Update product certificates for RHEL 8.3 GA and 8.4 Beta/HTB (oamg#624) Related leapp release: https://github.com/oamg/leapp/releases/tag/v0.12.0
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The requests package was missing when running leapp-repository unit tests - leapp framework was being installed by leapp-repository makefile as a dependency, but without this dependency of leapp framework.
That caused an incorrect workaround on the leapp-repository side which will need to be reverted after this PR is merged:
oamg/leapp-repository#410