launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #32047
[Merge] ~lgp171188/launchpad:fix-breezy-wheel-build-make-configobj-a-setup-requirement into launchpad:master
Guruprasad has proposed merging ~lgp171188/launchpad:fix-breezy-wheel-build-make-configobj-a-setup-requirement into launchpad:master.
Commit message:
Make configobj a setup requirement
This fixes the errors while trying to build the breezy wheel as
it expects configobj to be installed already at that time.
Requested reviews:
Launchpad code reviewers (launchpad-reviewers)
For more details, see:
https://code.launchpad.net/~lgp171188/launchpad/+git/launchpad/+merge/478587
--
Your team Launchpad code reviewers is requested to review the proposed merge of ~lgp171188/launchpad:fix-breezy-wheel-build-make-configobj-a-setup-requirement into launchpad:master.
diff --git a/requirements/launchpad.txt b/requirements/launchpad.txt
index 084e28f..871f428 100644
--- a/requirements/launchpad.txt
+++ b/requirements/launchpad.txt
@@ -28,7 +28,6 @@ boto3==1.35.71
botocore==1.35.71
celery==4.4.7
Chameleon==3.6.2
-configobj==5.0.6
contextvars==2.4
constantly==15.1.0
cryptography==2.7
diff --git a/requirements/setup.txt b/requirements/setup.txt
index 9d76530..341c7b7 100644
--- a/requirements/setup.txt
+++ b/requirements/setup.txt
@@ -1,3 +1,4 @@
+configobj==5.0.6
pip==21.3.1
setuptools==44.0.0
wheel==0.34.2
Follow ups