Changeset 29c0ca5 in trunk
- Timestamp:
- 2023-04-28T17:51:22Z (2 years ago)
- Branches:
- master
- Children:
- 04ef5a0
- Parents:
- a088b1d
- Location:
- .circleci
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified .circleci/create-virtualenv.sh ¶
ra088b1d r29c0ca5 48 48 # explicitly ask for one. 49 49 "${PIP}" install --upgrade setuptools==44.0.0 wheel 50 51 # Just about every user of this image wants to use tox from the bootstrap 52 # virtualenv so go ahead and install it now. 53 "${PIP}" install "tox~=3.0" -
TabularUnified .circleci/populate-wheelhouse.sh ¶
ra088b1d r29c0ca5 32 32 "${PROJECT_ROOT}"[testenv] \ 33 33 "${PROJECT_ROOT}"[test] 34 35 # Put tox right into the bootstrap environment because everyone is going to36 # need to use it.37 "${PIP}" install "tox~=3.0" -
TabularUnified .circleci/setup-virtualenv.sh ¶
ra088b1d r29c0ca5 29 29 export PIP_NO_INDEX="1" 30 30 31 # Get tox inside the bootstrap virtualenv since we use tox to manage the rest32 # of the environment.33 "${BOOTSTRAP_VENV}"/bin/pip install tox34 35 31 # Get everything else installed in it, too. 36 32 "${BOOTSTRAP_VENV}"/bin/tox \
Note: See TracChangeset
for help on using the changeset viewer.