From 86fd1a38164ba30015fdbdb0dc78c137efb13929 Mon Sep 17 00:00:00 2001 From: Nicola Soranzo Date: Mon, 20 Sep 2021 20:49:02 +0100 Subject: [PATCH 1/3] Remove `use_2to3`, unsupported in Setuptools 58 See https://setuptools.readthedocs.io/en/latest/history.html#v58-0-0 --- setup.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/setup.py b/setup.py index c51d50b..246d029 100644 --- a/setup.py +++ b/setup.py @@ -17,10 +17,6 @@ extra = {} extra["install_requires"] = DEPENDENCIES -# 2to3 -if sys.version_info >= (3,): - extra["use_2to3"] = True - with open("yacman/_version.py", "r") as versionfile: version = versionfile.readline().split()[-1].strip("\"'\n") From ac1fcfcaffd5909d61ed1916f05d9f32be61603e Mon Sep 17 00:00:00 2001 From: Nathan Sheffield Date: Mon, 20 Sep 2021 17:21:55 -0400 Subject: [PATCH 2/3] Update _version.py --- yacman/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yacman/_version.py b/yacman/_version.py index deded32..732155f 100644 --- a/yacman/_version.py +++ b/yacman/_version.py @@ -1 +1 @@ -__version__ = "0.8.2" +__version__ = "0.8.3" From 32d3e7f4b728949265137e7e2daa2a41ce36a1d3 Mon Sep 17 00:00:00 2001 From: Nathan Sheffield Date: Mon, 20 Sep 2021 17:23:11 -0400 Subject: [PATCH 3/3] Update changelog.md --- docs/changelog.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/changelog.md b/docs/changelog.md index 4ff2847..235dcf0 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -2,6 +2,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) and [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) format. +## [0.8.3] -- 2021-09-20 +## Fixed +- removed use2to3 for compatibility with setuptools upgrade. + ## [0.8.2] -- 2021-06-28 ## Fixed - if file is empty, initialize its contents to an empty dict, which prevents failure