In a private pip repository there is a package called 'test_package'.
The package has a QA and a prod version that is differentiated by v.v.v.prod and v.v.v.qa where v is the major, minor, and micro.
How would I get the package with the latest version for qa or prod? To give context, there is a docker job that is pulling the latest package each time it runs and it needs to pull qa or prod.
Would a better way to do this possibly be to have two packages 'test_package_qa' and 'test_package_prod'? Is there a way to copy a package and rename it to another package through pip commands if this is a better way to go? (e.g. test_package_qa-1.0.1 and copy it to test_package_prod-1.0.0 where test_package_qa latest could be on version 1.1.0, but 1.0.1 is the one we want to release to prod)