Skip to content

Commit

Permalink
Test with new version of setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
kronos30 committed Jul 29, 2024
1 parent 3c06cbe commit d3d7aea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion catkin_virtualenv/src/catkin_virtualenv/venv.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def initialize(self, python, use_system_packages, extra_pip_args, clean=True):
virtualenv = ["virtualenv", "--no-setuptools", "--verbose", "--python", python]
# py2's virtualenv command will try install latest setuptools. setuptools>=45 not compatible with py2,
# but we do require a reasonably up-to-date version (because of pip==20.1), so v44 at least.
preinstall += ["setuptools>=44,<45"]
preinstall += ["setuptools>=68,<69"]

if use_system_packages:
virtualenv.append("--system-site-packages")
Expand Down

0 comments on commit d3d7aea

Please sign in to comment.