Skip to content

Commit

Permalink
Pinnning setuptools and upgrading version to major release
Browse files Browse the repository at this point in the history
  • Loading branch information
rachelannelise committed Jul 23, 2024
1 parent 81d55b1 commit ffd08fc
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 wheel", 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.3.dev0"
__version__ = "5.0.0.dev0"
VERSION = tuple(_safe_int(x) for x in __version__.split("."))

0 comments on commit ffd08fc

Please sign in to comment.