diff options
| author | Daniel Bengtsson <dbengt@redhat.com> | 2019-11-15 10:06:35 +0100 |
|---|---|---|
| committer | Daniel Bengtsson <dbengt@redhat.com> | 2020-03-16 08:00:44 +0100 |
| commit | bf2beb9e868175adb775ec253ef4a929ac557975 (patch) | |
| tree | 9adeb68fc7821b74ab8b9e1464bb908f313fe7f3 /requirements.txt | |
| parent | 045f133f16722f1cf429bf2ec30c36df82095acd (diff) | |
| download | python-openstackclient-bf2beb9e868175adb775ec253ef4a929ac557975.tar.gz | |
Stop configuring install_command in tox and stop use pip.
Currently, we are overriding 'install_command' to use 'pip'. This is
considered poor behavior and 'python -m pip' should be used instead:
https://snarky.ca/why-you-should-use-python-m-pip/
It turns out that this is the the default value provided by tox:
https://tox.readthedocs.io/en/latest/config.html#conf-install_command
So we can remove the line and simply use the default value. Use the
right way when it's necessary.
Change-Id: I410173d5fdcd8c592d98eed2f48b98e06299e8b3
Diffstat (limited to 'requirements.txt')
| -rw-r--r-- | requirements.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/requirements.txt b/requirements.txt index f7e2ceca..aaea495e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,7 +6,7 @@ six>=1.10.0 # MIT Babel!=2.4.0,>=2.3.4 # BSD cliff!=2.9.0,>=2.8.0 # Apache-2.0 -keystoneauth1>=3.6.2 # Apache-2.0 +keystoneauth1>=3.14.0 # Apache-2.0 openstacksdk>=0.17.0 # Apache-2.0 osc-lib>=2.0.0 # Apache-2.0 oslo.i18n>=3.15.3 # Apache-2.0 |
