Skip to content

Commit ffd08fc

Browse files
Pinnning setuptools and upgrading version to major release
1 parent 81d55b1 commit ffd08fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

streamparse/cli/update_virtualenv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def _create_or_update_virtualenv(
6767
puts(f"Updating virtualenv: {virtualenv_name}")
6868
pip_path = "/".join((virtualenv_path, "bin", "pip"))
6969
# Make sure we're using latest pip so options work as expected
70-
run_cmd(f"{pip_path} install --upgrade 'pip>=9.0,!=19.0' setuptools wheel", user)
70+
run_cmd(f"{pip_path} install --upgrade 'pip>=9.0,!=19.0' setuptools==69.5.1", user)
7171
run_cmd(
7272
(
7373
"{} install -r {} --exists-action w --upgrade "

streamparse/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ def _safe_int(string):
2828
return string
2929

3030

31-
__version__ = "4.1.3.dev0"
31+
__version__ = "5.0.0.dev0"
3232
VERSION = tuple(_safe_int(x) for x in __version__.split("."))

0 commit comments

Comments
 (0)