From 19e6a8c314e6e4c16f8374fa6b5847d9e09eb959 Mon Sep 17 00:00:00 2001 From: 345thomas Date: Thu, 26 Jul 2018 19:45:49 +0100 Subject: [PATCH 1/4] remove pypi url from reqs --- README.rst | 2 +- requirements.txt | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 9b80057..6f64bb3 100644 --- a/README.rst +++ b/README.rst @@ -51,7 +51,7 @@ you if you don't have it already. Python version ============== -Tested against Python 3.6 +Tested against Python >=3.6 ******** Examples diff --git a/requirements.txt b/requirements.txt index 6b26f9a..e5c1005 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,2 @@ ---index-url https://pypi.python.org/simple/ - ###### Install local application in development mode. This will grab install_requires from setup.py. -e . From 73d76d03d2ec79eae2c01e23b13c70f021fcb722 Mon Sep 17 00:00:00 2001 From: 345thomas Date: Thu, 26 Jul 2018 19:50:01 +0100 Subject: [PATCH 2/4] setup py add py 3.7 trove classifier --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 339d3c1..490944d 100644 --- a/setup.py +++ b/setup.py @@ -59,7 +59,8 @@ # Specify the Python versions you support here. In particular, ensure # that you indicate whether you support Python 2, Python 3 or both. - 'Programming Language :: Python :: 3.6' + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7' ], # What does your project relate to? From c1a432d20011c6f3056357d30d1bf9f89e5cdc8f Mon Sep 17 00:00:00 2001 From: 345thomas Date: Thu, 26 Jul 2018 21:05:34 +0100 Subject: [PATCH 3/4] prod trove classifier --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 490944d..4f9be51 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ # 3 - Alpha # 4 - Beta # 5 - Production/Stable - 'Development Status :: 3 - Alpha', + 'Development Status :: 5 - Production/Stable', # Indicate who your project is intended for 'Intended Audience :: Developers', From 42fab6971be62d11737cac4b1a8b042ac1678a50 Mon Sep 17 00:00:00 2001 From: 345thomas Date: Thu, 26 Jul 2018 21:28:20 +0100 Subject: [PATCH 4/4] =?UTF-8?q?Bump=20version:=200.1.1=20=E2=86=92=201.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pypyraws/version.py | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pypyraws/version.py b/pypyraws/version.py index 55df4bc..ead621d 100644 --- a/pypyraws/version.py +++ b/pypyraws/version.py @@ -2,7 +2,7 @@ import platform -__version__ = '0.1.1' +__version__ = '1.0.0' def get_version(): diff --git a/setup.cfg b/setup.cfg index 52b3eac..f0e6508 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.1 +current_version = 1.0.0 [bdist_wheel] universal = 0