From aeb20c47e2c375b148c7869ce135053ae9c410e9 Mon Sep 17 00:00:00 2001 From: "Edward F Long, Jr" Date: Fri, 7 May 2021 08:56:59 -0400 Subject: [PATCH 1/6] pin minimum version of setuptools required --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index b908cbe..1888b45 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,6 @@ +#!/usr/bin/env python +import pkg_resources import setuptools +pkg_resources.require('setuptools>=40.6') setuptools.setup() From 5739f4dbdac485f0a73d8767f167a4fe485d8d61 Mon Sep 17 00:00:00 2001 From: "Edward F Long, Jr" Date: Fri, 7 May 2021 08:57:34 -0400 Subject: [PATCH 2/6] version bump --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 27f9cd3..a8fdfda 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.8.0 +1.8.1 From 87579ab99451b45f99d4322817bba72e440dce93 Mon Sep 17 00:00:00 2001 From: "Edward F Long, Jr" Date: Mon, 10 May 2021 15:21:37 -0400 Subject: [PATCH 3/6] pin setuptools dependency in metadata --- setup.cfg | 3 ++- setup.py | 2 -- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 22c950f..9d2471a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -25,7 +25,8 @@ classifiers = Topic :: Internet Topic :: Software Development Typing :: Typed -requires-dist = setuptools +requires-dist = setuptools>=40.6 + keywords = postgres python3 diff --git a/setup.py b/setup.py index 1888b45..61cc244 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,4 @@ #!/usr/bin/env python -import pkg_resources import setuptools -pkg_resources.require('setuptools>=40.6') setuptools.setup() From 2850cdab1d89800f1b5fa1d052b13df8e2922070 Mon Sep 17 00:00:00 2001 From: "Edward F Long, Jr" Date: Mon, 10 May 2021 15:23:05 -0400 Subject: [PATCH 4/6] remove extra space --- setup.cfg | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 9d2471a..1bc809a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -26,7 +26,6 @@ classifiers = Topic :: Software Development Typing :: Typed requires-dist = setuptools>=40.6 - keywords = postgres python3 From 266f881738ab700550e12992f1a6c2b0cc3d4c61 Mon Sep 17 00:00:00 2001 From: "Edward F Long, Jr" Date: Mon, 10 May 2021 15:40:15 -0400 Subject: [PATCH 5/6] version bump --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index a8fdfda..53adb84 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.8.1 +1.8.2 From c4f10992e5dda2d7efb37d81646a0b0d1ae4d4a0 Mon Sep 17 00:00:00 2001 From: "Edward F Long, Jr" Date: Mon, 10 May 2021 16:07:28 -0400 Subject: [PATCH 6/6] fix typo in version, be explicit in python3 in setup.py --- VERSION | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 53adb84..a8fdfda 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.8.2 +1.8.1 diff --git a/setup.py b/setup.py index 61cc244..f187f2c 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import setuptools setuptools.setup()