From 81d55b17edc311d25ff7f88b962ed77548b73195 Mon Sep 17 00:00:00 2001 From: Annelise Lynch Date: Mon, 22 Jul 2024 19:07:04 -0600 Subject: [PATCH 1/3] Adding wheel to virtualenv creation and updating version to 4.1.3.dev0 --- streamparse/cli/update_virtualenv.py | 2 +- streamparse/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/streamparse/cli/update_virtualenv.py b/streamparse/cli/update_virtualenv.py index 966770a..2d32dfa 100644 --- a/streamparse/cli/update_virtualenv.py +++ b/streamparse/cli/update_virtualenv.py @@ -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 wheel", user) run_cmd( ( "{} install -r {} --exists-action w --upgrade " diff --git a/streamparse/version.py b/streamparse/version.py index 9a5e42e..4855edc 100644 --- a/streamparse/version.py +++ b/streamparse/version.py @@ -28,5 +28,5 @@ def _safe_int(string): return string -__version__ = "4.1.2" +__version__ = "4.1.3.dev0" VERSION = tuple(_safe_int(x) for x in __version__.split(".")) From ffd08fcf4e8e3abf6e39d6e0c6aab22badabec81 Mon Sep 17 00:00:00 2001 From: Annelise Lynch Date: Tue, 23 Jul 2024 12:25:17 -0600 Subject: [PATCH 2/3] Pinnning setuptools and upgrading version to major release --- streamparse/cli/update_virtualenv.py | 2 +- streamparse/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/streamparse/cli/update_virtualenv.py b/streamparse/cli/update_virtualenv.py index 2d32dfa..0e3bb09 100644 --- a/streamparse/cli/update_virtualenv.py +++ b/streamparse/cli/update_virtualenv.py @@ -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 " diff --git a/streamparse/version.py b/streamparse/version.py index 4855edc..f61207a 100644 --- a/streamparse/version.py +++ b/streamparse/version.py @@ -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(".")) From 642ef622fa295a2a086ca9583a0943dd09387db5 Mon Sep 17 00:00:00 2001 From: Annelise Lynch Date: Tue, 23 Jul 2024 13:42:37 -0600 Subject: [PATCH 3/3] change version to 5.0.0 --- streamparse/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/streamparse/version.py b/streamparse/version.py index f61207a..ccd775a 100644 --- a/streamparse/version.py +++ b/streamparse/version.py @@ -28,5 +28,5 @@ def _safe_int(string): return string -__version__ = "5.0.0.dev0" +__version__ = "5.0.0" VERSION = tuple(_safe_int(x) for x in __version__.split("."))