Skip to content

Commit

Permalink
Merge pull request #504 from pystorm/Parsely/bugfix/upgrade-wheel-vir…
Browse files Browse the repository at this point in the history
…tualenv

Pin setuptools version in virtualenv creation and updating version to 5.0.0.dev0
  • Loading branch information
rachelannelise authored Jul 23, 2024
2 parents adb6d5e + 642ef62 commit 884ceb3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion streamparse/cli/update_virtualenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def _create_or_update_virtualenv(
puts(f"Updating virtualenv: {virtualenv_name}")
pip_path = "/".join((virtualenv_path, "bin", "pip"))
# Make sure we're using latest pip so options work as expected
run_cmd(f"{pip_path} install --upgrade 'pip>=9.0,!=19.0' setuptools", user)
run_cmd(f"{pip_path} install --upgrade 'pip>=9.0,!=19.0' setuptools==69.5.1", user)
run_cmd(
(
"{} install -r {} --exists-action w --upgrade "
Expand Down
2 changes: 1 addition & 1 deletion streamparse/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ def _safe_int(string):
return string


__version__ = "4.1.2"
__version__ = "5.0.0"
VERSION = tuple(_safe_int(x) for x in __version__.split("."))

0 comments on commit 884ceb3

Please sign in to comment.