summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2021-08-27 15:47:13 +0200
committerRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2021-08-27 15:47:13 +0200
commit73472bd64ed53ef2f078469522531846eee654b4 (patch)
treeea22c07442cb0c37d8e9a5dd786f6ec31969a4cf
parent4509fc071a15fb08722dcac383bed0b5972cd697 (diff)
downloadsetuptools-scm-73472bd64ed53ef2f078469522531846eee654b4.tar.gz
update changelog and remove tomli upper bound
-rw-r--r--CHANGELOG.rst6
-rw-r--r--setup.cfg2
2 files changed, 7 insertions, 1 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 08a1a9d..8965c97 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,3 +1,9 @@
+v6.2.0
+=======
+
+* fix #608: resolve tomli dependency issue by making it a hard dependency
+ as all intended/supported install options use pip/wheel this is only a feature release
+
v6.1.1
=======
diff --git a/setup.cfg b/setup.cfg
index 93b0c95..e59ca89 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -28,7 +28,7 @@ classifiers =
packages = find:
install_requires =
setuptools>=45
- tomli~=1.0
+ tomli>=1.0
python_requires = >=3.6
package_dir =
=src