Merge pull request #8089 from freqtrade/dependabot/pip/setuptools-65.5.1

Bump setuptools from 65.5.0 to 65.5.1
This commit is contained in:
Matthias 2023-02-01 12:32:43 +01:00 committed by GitHub
commit 8c9de445e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -6,5 +6,5 @@ torch==1.13.1
stable-baselines3==1.7.0
sb3-contrib==1.7.0
# Gym is forced to this version by stable-baselines3.
setuptools==65.5.0 # Should be removed when gym is fixed.
setuptools==65.5.1 # Should be removed when gym is fixed.
gym==0.21

View File

@ -50,7 +50,7 @@ function updateenv() {
SYS_ARCH=$(uname -m)
echo "pip install in-progress. Please wait..."
# Setuptools 65.5.0 is the last version that can install gym==0.21.0
${PYTHON} -m pip install --upgrade pip wheel setuptools==65.5.0
${PYTHON} -m pip install --upgrade pip wheel setuptools==65.5.1
read -p "Do you want to install dependencies for dev [y/N]? "
dev=$REPLY
if [[ $REPLY =~ ^[Yy]$ ]]