From 72c0447b6d2077af8fe85805ccff708a5a0067e9 Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Fri, 3 Sep 2021 17:15:35 +0200 Subject: [PATCH 1/2] fix #625: add tomli to install_requires again --- setup.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.cfg b/setup.cfg index df9ef8d1..3fe4541d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -29,6 +29,7 @@ packages = find: install_requires = packaging>=20.0 setuptools + tomli>=1.0.0 # keep in sync python_requires = >=3.6 package_dir = =src From c53052655ad6b057ede9615845fba2139a2e6ef0 Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Fri, 3 Sep 2021 17:20:32 +0200 Subject: [PATCH 2/2] prepare for the 6.3.1 release --- CHANGELOG.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 70ae6925..f93e9b83 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,8 @@ +6.3.1 +===== + +* fix #625: restore tomli in install_requires after the regression changes in took it out + and some users never added it even tho they have pyproject.toml files 6.3.0 =======