Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.

Commit

Permalink
Remove pip install --pre
Browse files Browse the repository at this point in the history
We were installing some packages with support for prerelease versions in
expectation of needing it in our CI. This turns out to not be needed so
we should remove it.

Change-Id: I7ae440d3534e33144942c2230a88cf54f8a153d3
  • Loading branch information
greghaynes committed Oct 23, 2014
1 parent 355cce7 commit a5941bf
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion elements/heat-cfntools/install.d/05-heat-cfntools
Expand Up @@ -24,7 +24,7 @@ $VENV/bin/pip install -U pip
$VENV/bin/pip install -U 'setuptools>=1.0'
# bug #1293812 : Avoid easy_install triggering on pbr.
$VENV/bin/pip install -U 'pbr>=0.6,<1.0'
$VENV/bin/pip install --pre -U heat-cfntools
$VENV/bin/pip install -U heat-cfntools

# symlink to /opt/aws/bin
$VENV/bin/cfn-create-aws-symlinks --source $VENV/bin
Expand Down
Expand Up @@ -18,7 +18,7 @@ else
/opt/stack/venvs/os-apply-config/bin/pip install -U 'setuptools>=1.0'
# bug #1293812 : Avoid easy_install triggering on pbr.
/opt/stack/venvs/os-apply-config/bin/pip install -U 'pbr>=0.6,<1.0'
/opt/stack/venvs/os-apply-config/bin/pip install --pre -U os-apply-config
/opt/stack/venvs/os-apply-config/bin/pip install -U os-apply-config
fi

# Write the manifest of what was installed
Expand Down
Expand Up @@ -18,7 +18,7 @@ else
/opt/stack/venvs/os-collect-config/bin/pip install -U 'setuptools>=1.0'
# bug #1293812 : Avoid easy_install triggering on pbr.
/opt/stack/venvs/os-collect-config/bin/pip install -U 'pbr>=0.6,<1.0'
/opt/stack/venvs/os-collect-config/bin/pip install --pre -U os-collect-config
/opt/stack/venvs/os-collect-config/bin/pip install -U os-collect-config
fi

# Write the manifest of what was installed
Expand Down
Expand Up @@ -18,7 +18,7 @@ else
$OS_NET_CONFIG_VENV_DIR/bin/pip install -U 'setuptools>=1.0'
# bug #1293812 : Avoid easy_install triggering on pbr.
$OS_NET_CONFIG_VENV_DIR/bin/pip install -U 'pbr>=0.6,<1.0'
$OS_NET_CONFIG_VENV_DIR/bin/pip install --pre -U os-net-config
$OS_NET_CONFIG_VENV_DIR/bin/pip install -U os-net-config
fi

# Write the manifest of what was installed
Expand Down
Expand Up @@ -22,7 +22,7 @@ else
/opt/stack/venvs/os-refresh-config/bin/pip install -U 'setuptools>=1.0'
# bug #1293812 : Avoid easy_install triggering on pbr.
/opt/stack/venvs/os-refresh-config/bin/pip install -U 'pbr>=0.5.21,<1.0'
/opt/stack/venvs/os-refresh-config/bin/pip install --pre -U os-refresh-config
/opt/stack/venvs/os-refresh-config/bin/pip install -U os-refresh-config
fi

# Write the manifest of what was installed
Expand Down

0 comments on commit a5941bf

Please sign in to comment.