Browse Source
Small review of README Add Documentation section Minor changes Fix a bug by adding an admonishment Also synced tox/pip boilerplate in order to include: * https://github.com/openstack-charmers/release-tools/pull/156 * https://github.com/openstack-charmers/release-tools/pull/157 Closes-Bug: #1881171 Change-Id: I405e8f2692be76695ac3f57a7618deae98e45225 Co-authored-by: Aurelien Lourot <aurelien.lourot@canonical.com>changes/13/811013/3
5 changed files with 59 additions and 13 deletions
@ -1,5 +1,4 @@
|
||||
- project: |
||||
templates: |
||||
- python35-charm-jobs |
||||
- openstack-python3-ussuri-jobs |
||||
- openstack-python3-charm-jobs |
||||
- openstack-cover-jobs |
||||
|
@ -0,0 +1,18 @@
|
||||
#!/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 "$@" |
Loading…
Reference in new issue