From 6fb86387f58c5a345d7c44ebdbb02a6a1d1ba07d Mon Sep 17 00:00:00 2001 From: Rafael Pivato Date: Fri, 1 May 2020 16:55:07 -0300 Subject: [PATCH] Starting version 1.1.2a --- HISTORY.rst | 4 ++++ README.rst | 17 +++++++++++++++++ pyup/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 5 files changed, 24 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 9892be9..508a229 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,10 @@ History ------- +1.1.2a (current) +---------------- +* Current unstable + 1.1.1 (2020-05-01) ------------------ * Fixed package Python requirement metadata to Python 3.5+ diff --git a/README.rst b/README.rst index 3ef33be..fb88edd 100644 --- a/README.rst +++ b/README.rst @@ -95,3 +95,20 @@ Disable verification of SSL certificate:: $ pyup --provider github --provider_url https://github.enterprise/api/v3 --repo=username/repo --user-token= --ignore_ssl $ pyup --provider gitlab --repo=username/repo --user-token=@https://your.gitlab/ --ignore_ssl + +Python 2.7 +---------- + +This tool requires latest Python patch versions starting with version 3.5. We +did support Python 2.7 in the past but, as for other Python 3.x minor versions, +it reached its End-Of-Life and as such we are not able to support it anymore. + +We understand you might still have Python 2.7 projects running. At the same +time, PyUp itself has a commitment to encourage developers to keep their +software up-to-date, and it would not make sense for us to work with officially +unsupported Python versions, or even those that reached their end of life. + +If you still need to run PyUp from a Python 2.7 environment, please use +version 1.0.2 available at PyPi. Alternatively, you can run PyUp from a +Python 3 environment to check the requirements file for your Python 2.7 +project. diff --git a/pyup/__init__.py b/pyup/__init__.py index b3ddbc4..778c355 100644 --- a/pyup/__init__.py +++ b/pyup/__init__.py @@ -1 +1 @@ -__version__ = '1.1.1' +__version__ = '1.1.2a' diff --git a/setup.cfg b/setup.cfg index 84174ff..ab6ea9a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.1 +current_version = 1.1.2a commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(?P
[a-z]*)
diff --git a/setup.py b/setup.py
index eca1139..c72285e 100755
--- a/setup.py
+++ b/setup.py
@@ -29,7 +29,7 @@
 
 setup(
     name='pyupio',
-    version='1.1.1',
+    version='1.1.2a',
     description="A tool to update all your projects requirements",
     long_description=readme + '\n\n' + history,
     long_description_content_type='text/x-rst',