From a977361e2a9536be10fac50d74f8e8b7f6cda5bf Mon Sep 17 00:00:00 2001 From: Ray Kim Date: Fri, 28 Jul 2023 16:40:21 -0400 Subject: [PATCH 1/2] add voluptuous pin --- dev/requirements.txt | 3 +++ python/pyspark/version.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/dev/requirements.txt b/dev/requirements.txt index 79a7062431200..ea073b6b96c38 100644 --- a/dev/requirements.txt +++ b/dev/requirements.txt @@ -44,3 +44,6 @@ PyGithub # pandas API on Spark Code formatter. black py + +# affirm pins +voluptuous==0.11.2 diff --git a/python/pyspark/version.py b/python/pyspark/version.py index 74863faf231c4..94b5bdb17d3e9 100644 --- a/python/pyspark/version.py +++ b/python/pyspark/version.py @@ -16,4 +16,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__: str = "2815!3.3.2+affirm.1" +__version__: str = "3.3.2+affirm.dev13" From a53bf38bb18a534bb98c827bb36d7608ee2370aa Mon Sep 17 00:00:00 2001 From: Ray Kim Date: Fri, 28 Jul 2023 17:46:48 -0400 Subject: [PATCH 2/2] pin in setup.py --- dev/requirements.txt | 3 --- python/pyspark/version.py | 2 +- python/setup.py | 2 +- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/dev/requirements.txt b/dev/requirements.txt index ea073b6b96c38..79a7062431200 100644 --- a/dev/requirements.txt +++ b/dev/requirements.txt @@ -44,6 +44,3 @@ PyGithub # pandas API on Spark Code formatter. black py - -# affirm pins -voluptuous==0.11.2 diff --git a/python/pyspark/version.py b/python/pyspark/version.py index 94b5bdb17d3e9..2aba115a49132 100644 --- a/python/pyspark/version.py +++ b/python/pyspark/version.py @@ -16,4 +16,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__: str = "3.3.2+affirm.dev13" +__version__: str = "3.3.2+affirm.dev14" diff --git a/python/setup.py b/python/setup.py index 601eaf3ec26b1..a1229609ea77d 100755 --- a/python/setup.py +++ b/python/setup.py @@ -264,7 +264,7 @@ def run(self): license='http://www.apache.org/licenses/LICENSE-2.0', # Don't forget to update python/docs/source/getting_started/install.rst # if you're updating the versions or dependencies. - install_requires=['py4j==0.10.9.5'], + install_requires=['py4j==0.10.9.5', 'voluptuous==0.11.2'], extras_require={ 'ml': ['numpy>=1.15'], 'mllib': ['numpy>=1.15'],