From bde9eea7b3f7e796238e3f9790a0203d3238c0b1 Mon Sep 17 00:00:00 2001 From: Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com> Date: Sat, 31 Jul 2021 16:24:34 -0500 Subject: [PATCH 1/2] Fix Python version specification Changes >=3.6.* to >=3.6.0 since >=3.6.* is not PEP 440 compliant --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 11d9b560..72abe7ab 100644 --- a/setup.py +++ b/setup.py @@ -81,7 +81,7 @@ def read(fname): 'http': http_deps, 'webhdfs': http_deps, }, - python_requires=">=3.6.*", + python_requires=">=3.6.0", test_suite="smart_open.tests", From 0d75b7e8680b21dce1c299583f2bc38038a05f98 Mon Sep 17 00:00:00 2001 From: Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com> Date: Sat, 31 Jul 2021 19:53:30 -0500 Subject: [PATCH 2/2] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 72abe7ab..e9ae163c 100644 --- a/setup.py +++ b/setup.py @@ -81,7 +81,7 @@ def read(fname): 'http': http_deps, 'webhdfs': http_deps, }, - python_requires=">=3.6.0", + python_requires=">=3.6", test_suite="smart_open.tests",