Skip to content

Commit

Permalink
Freezing setuptools due to its incorrect operation
Browse files Browse the repository at this point in the history
  • Loading branch information
machikhin committed Aug 31, 2020
1 parent 491a083 commit 6b68cde
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cli/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ def gen_version():
install_requires=_find_requirements(),
package_data={'': _find_data_files('tessia')},
packages=find_packages(exclude=['tests', 'tests.*']),
setup_requires=['setuptools>=30.3.0'],
setup_requires=['setuptools==49.6.0'],
url=URL,
version=gen_version(),
zip_safe=False,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def gen_version():
install_requires=_find_requirements(),
package_data={'': _find_data_files('tessia')},
packages=find_packages(exclude=['tests', 'tests.*']),
setup_requires=['setuptools>=30.3.0'],
setup_requires=['setuptools==49.6.0'],
url=URL,
version=gen_version(),
zip_safe=False,
Expand Down
2 changes: 1 addition & 1 deletion tools/ci/docker/tessia-cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ RUN apt-get -q update > /dev/null && \
locale-gen en_US.UTF-8 && \
update-locale LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 && \
# set up python packaging tools
pip3 -q install -U setuptools pip && \
pip3 -q install -U "setuptools==49.6.0" pip && \
# remove pip from distro to avoid conflicts
apt-get -y remove python3-pip && hash -r && \
# add the admin user for administrative work
Expand Down
2 changes: 1 addition & 1 deletion tools/ci/docker/tessia-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ RUN apt-get -q update > /dev/null && \
locale-gen en_US.UTF-8 && \
update-locale LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 && \
# set up python packaging tools
pip3 -q install -U setuptools pip && \
pip3 -q install -U "setuptools==49.6.0" pip && \
# remove pip from distro to avoid conflicts
apt-get -y remove python3-pip && hash -r && \
# web server for api service
Expand Down

0 comments on commit 6b68cde

Please sign in to comment.