4550a20201
* charm-helpers sync for classic charms * sync from release-tools * switch to release-specific zosci functional tests * run focal-ussuri as smoke tests * remove trusty, xenial, and groovy metadata/tests * drop py35 and add py39 Change-Id: I3f5192f348164fdaed124519704fcb2f00871ab8
19 lines
787 B
Bash
Executable File
19 lines
787 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# This file is managed centrally by release-tools and should not be modified
|
|
# within individual charm repos. See the 'global' dir contents for available
|
|
# choices of tox.ini for OpenStack Charms:
|
|
# https://github.com/openstack-charmers/release-tools
|
|
#
|
|
# setuptools 58.0 dropped the support for use_2to3=true which is needed to
|
|
# install blessings (an indirect dependency of charm-tools).
|
|
#
|
|
# More details on the beahvior of tox and virtualenv creation can be found at
|
|
# https://github.com/tox-dev/tox/issues/448
|
|
#
|
|
# This script is wrapper to force the use of the pinned versions early in the
|
|
# process when the virtualenv was created and upgraded before installing the
|
|
# depedencies declared in the target.
|
|
pip install 'pip<20.3' 'setuptools<50.0.0'
|
|
pip "$@"
|