Skip to content

Commit

Permalink
Distgen regenerated content
Browse files Browse the repository at this point in the history
  • Loading branch information
frenzymadness committed Jun 16, 2020
1 parent c68f671 commit cc88a2e
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 12 deletions.
1 change: 1 addition & 0 deletions 2.7/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ file inside your source code repository.
* **PIN_PIPENV_VERSION**

Set this variable together with `ENABLE_PIPENV` to use a specific version of Pipenv.
If not set, the latest stable version from PyPI is installed.
For example `PIN_PIPENV_VERSION=2018.11.26` installs `pipenv==2018.11.26`.


Expand Down
6 changes: 3 additions & 3 deletions 2.7/s2i/bin/assemble
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ function install_tool() {
# have your own PyPI mirror, it will take it from there. If this try fails, try it
# again with --isolated which ignores external pip settings (env vars, config file)
# and installs the tool from PyPI (needs internet connetion).
$VENV_DIR/bin/pip install -U $1$2 # Combines package name with [extras] if [extras] is defined as $2
$VENV_DIR/bin/pip install -U $1$2 # Combines package name with [extras] or version specifier if is defined as $2```
if [ $? -ne 0 ]; then
echo "WARNING: Installation of $1 failed, trying again from official PyPI with pip --isolated"
$VENV_DIR/bin/pip --isolated install -U $1$2 # Combines package name with [extras] if [extras] is defined as $2
echo "WARNING: Installation of $1 failed, trying again from official PyPI with pip --isolated install"
$VENV_DIR/bin/pip install -U $1$2 # Combines package name with [extras] or version specifier if is defined as $2```
fi
mkdir -p $HOME/.local/bin
ln -s $VENV_DIR/bin/$1 $HOME/.local/bin/$1
Expand Down
1 change: 1 addition & 0 deletions 3.6/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ file inside your source code repository.
* **PIN_PIPENV_VERSION**

Set this variable together with `ENABLE_PIPENV` to use a specific version of Pipenv.
If not set, the latest stable version from PyPI is installed.
For example `PIN_PIPENV_VERSION=2018.11.26` installs `pipenv==2018.11.26`.

* **ENABLE_MICROPIPENV**
Expand Down
6 changes: 3 additions & 3 deletions 3.6/s2i/bin/assemble
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ function install_tool() {
# have your own PyPI mirror, it will take it from there. If this try fails, try it
# again with --isolated which ignores external pip settings (env vars, config file)
# and installs the tool from PyPI (needs internet connetion).
$VENV_DIR/bin/pip install -U $1$2 # Combines package name with [extras] if [extras] is defined as $2
$VENV_DIR/bin/pip install -U $1$2 # Combines package name with [extras] or version specifier if is defined as $2```
if [ $? -ne 0 ]; then
echo "WARNING: Installation of $1 failed, trying again from official PyPI with pip --isolated"
$VENV_DIR/bin/pip --isolated install -U $1$2 # Combines package name with [extras] if [extras] is defined as $2
echo "WARNING: Installation of $1 failed, trying again from official PyPI with pip --isolated install"
$VENV_DIR/bin/pip install -U $1$2 # Combines package name with [extras] or version specifier if is defined as $2```
fi
mkdir -p $HOME/.local/bin
ln -s $VENV_DIR/bin/$1 $HOME/.local/bin/$1
Expand Down
1 change: 1 addition & 0 deletions 3.7/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ file inside your source code repository.
* **PIN_PIPENV_VERSION**

Set this variable together with `ENABLE_PIPENV` to use a specific version of Pipenv.
If not set, the latest stable version from PyPI is installed.
For example `PIN_PIPENV_VERSION=2018.11.26` installs `pipenv==2018.11.26`.

* **ENABLE_MICROPIPENV**
Expand Down
6 changes: 3 additions & 3 deletions 3.7/s2i/bin/assemble
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ function install_tool() {
# have your own PyPI mirror, it will take it from there. If this try fails, try it
# again with --isolated which ignores external pip settings (env vars, config file)
# and installs the tool from PyPI (needs internet connetion).
$VENV_DIR/bin/pip install -U $1$2 # Combines package name with [extras] if [extras] is defined as $2
$VENV_DIR/bin/pip install -U $1$2 # Combines package name with [extras] or version specifier if is defined as $2```
if [ $? -ne 0 ]; then
echo "WARNING: Installation of $1 failed, trying again from official PyPI with pip --isolated"
$VENV_DIR/bin/pip --isolated install -U $1$2 # Combines package name with [extras] if [extras] is defined as $2
echo "WARNING: Installation of $1 failed, trying again from official PyPI with pip --isolated install"
$VENV_DIR/bin/pip install -U $1$2 # Combines package name with [extras] or version specifier if is defined as $2```
fi
mkdir -p $HOME/.local/bin
ln -s $VENV_DIR/bin/$1 $HOME/.local/bin/$1
Expand Down
1 change: 1 addition & 0 deletions 3.8/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ file inside your source code repository.
* **PIN_PIPENV_VERSION**

Set this variable together with `ENABLE_PIPENV` to use a specific version of Pipenv.
If not set, the latest stable version from PyPI is installed.
For example `PIN_PIPENV_VERSION=2018.11.26` installs `pipenv==2018.11.26`.

* **ENABLE_MICROPIPENV**
Expand Down
6 changes: 3 additions & 3 deletions 3.8/s2i/bin/assemble
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ function install_tool() {
# have your own PyPI mirror, it will take it from there. If this try fails, try it
# again with --isolated which ignores external pip settings (env vars, config file)
# and installs the tool from PyPI (needs internet connetion).
$VENV_DIR/bin/pip install -U $1$2 # Combines package name with [extras] if [extras] is defined as $2
$VENV_DIR/bin/pip install -U $1$2 # Combines package name with [extras] or version specifier if is defined as $2```
if [ $? -ne 0 ]; then
echo "WARNING: Installation of $1 failed, trying again from official PyPI with pip --isolated"
$VENV_DIR/bin/pip --isolated install -U $1$2 # Combines package name with [extras] if [extras] is defined as $2
echo "WARNING: Installation of $1 failed, trying again from official PyPI with pip --isolated install"
$VENV_DIR/bin/pip install -U $1$2 # Combines package name with [extras] or version specifier if is defined as $2```
fi
mkdir -p $HOME/.local/bin
ln -s $VENV_DIR/bin/$1 $HOME/.local/bin/$1
Expand Down

0 comments on commit cc88a2e

Please sign in to comment.