You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi. I remember that we agree to do only default and dev group at this moment.
I want to explain my seeing of this feature if you decide to revisit this issue in the future.
We have customer who runs our web application written in python in its own cloud. Our application depends on few closed source packages developed for our customer by another team. We don't have access to this packages, but know provided api.
For testing purpose this team create stubs packages which we can install from PyPI installation running by our customer.
Before deploying new app release to staging infrastructure new code is reviewed by customer programmers team. In staging environment customer devops install real packages with known names from another PyPI instance running at customer staging environment. After QA engineers approved new release same installation shipped to the production environment where customer PyPI instance running on another url.
So it's good to have something that can handle this tricky setup easily. I see it like
[packages]
customer_package_foo = "*"
customer_package_bar = "*"
[packages:staging]
<<inherit packages from previous section>>
<<pin real dependencies of foo and bar packages>>
<<provide staging pypi url>>
[package:prod]
<<inherit packages from staging>>
<<provide prod pypi url>>
The text was updated successfully, but these errors were encountered:
Hi. I remember that we agree to do only default and dev group at this moment.
I want to explain my seeing of this feature if you decide to revisit this issue in the future.
We have customer who runs our web application written in python in its own cloud. Our application depends on few closed source packages developed for our customer by another team. We don't have access to this packages, but know provided api.
For testing purpose this team create stubs packages which we can install from PyPI installation running by our customer.
Before deploying new app release to staging infrastructure new code is reviewed by customer programmers team. In staging environment customer devops install real packages with known names from another PyPI instance running at customer staging environment. After QA engineers approved new release same installation shipped to the production environment where customer PyPI instance running on another url.
So it's good to have something that can handle this tricky setup easily. I see it like
The text was updated successfully, but these errors were encountered: