summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorTim Burke <tim.burke@gmail.com>2018-01-17 10:09:47 -0800
committerTim Burke <tim.burke@gmail.com>2018-01-17 11:13:59 -0800
commita9b8f0a0d191873ac88b0c70166a2b889096fa69 (patch)
tree456b376414c182a88dff88e4d813421c5afc6e7a /tools
parentcde257de5cdfd1d0f5c832e154a7dee9cd42f13f (diff)
downloadpython-swiftclient-a9b8f0a0d191873ac88b0c70166a2b889096fa69.tar.gz
Revert "Add Constraints support"
Per http://lists.openstack.org/pipermail/openstack-dev/2017-December/125348.html > For many projects, tox_install.sh is not needed at all Let's see if that holds for python-swiftclient! This reverts commit f2f278fcbec3ad52a1726bb5a3f775d13bcc99dc. Change-Id: I0462c50ec71d87bac226f83a0d0942871ef5a0e7
Diffstat (limited to 'tools')
-rwxr-xr-xtools/tox_install.sh30
1 files changed, 0 insertions, 30 deletions
diff --git a/tools/tox_install.sh b/tools/tox_install.sh
deleted file mode 100755
index f3a83e9..0000000
--- a/tools/tox_install.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/usr/bin/env bash
-
-# Client constraint file contains this client version pin that is in conflict
-# with installing the client from source. We should remove the version pin in
-# the constraints file before applying it for from-source installation.
-
-CONSTRAINTS_FILE="$1"
-shift 1
-
-set -e
-
-# NOTE(tonyb): Place this in the tox enviroment's log dir so it will get
-# published to logs.openstack.org for easy debugging.
-localfile="$VIRTUAL_ENV/log/upper-constraints.txt"
-
-if [[ "$CONSTRAINTS_FILE" != http* ]]; then
- CONSTRAINTS_FILE="file://$CONSTRAINTS_FILE"
-fi
-# NOTE(tonyb): need to add curl to bindep.txt if the project supports bindep
-curl "$CONSTRAINTS_FILE" --insecure --progress-bar --output "$localfile"
-
-python -m pip install -c"$localfile" openstack-requirements
-
-# This is the main purpose of the script: Allow local installation of
-# the current repo. It is listed in constraints file and thus any
-# install will be constrained and we need to unconstrain it.
-python "$(which edit-constraints)" "$localfile" -- $CLIENT_NAME
-
-python -m pip install -c"$localfile" -U "$@"
-exit $?