aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Ganssle <1377457+pganssle@users.noreply.github.com>2024-03-01 13:28:13 -0500
committerGitHub <noreply@github.com>2024-03-01 13:28:13 -0500
commit1ae807774053c071acc9e7d3d27778fba0a7773e (patch)
tree4d4e566a5f3923af887a5907620fcf56bb8d5d8e
parentdb9d018944c41ddc740015cf5f64717c2ba64a5c (diff)
parentee6de9deab99e1697837f9b78f145a91c57d600d (diff)
downloaddateutil-upstream-master.tar.gz
Merge pull request #1346 from pganssle/release_2.9.0.post0upstream-master
Pin `setuptools_scm` to <8
-rw-r--r--NEWS9
-rw-r--r--pyproject.toml2
2 files changed, 10 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index a135f40..e771e16 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,12 @@
+Version 2.9.0.post0 (2024-03-01)
+================================
+
+Bugfixes
+--------
+
+- Pinned ``setuptools_scm`` to ``<8``, which should make the generated ``_version.py`` file compatible with all supported versions of Python.
+
+
Version 2.9.0 (2024-02-29)
==========================
diff --git a/pyproject.toml b/pyproject.toml
index 67ad619..b609717 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -3,7 +3,7 @@ requires = [
"setuptools; python_version != '3.3'",
"setuptools<40.0; python_version == '3.3'",
"wheel",
- "setuptools_scm"
+ "setuptools_scm<8.0"
]
build-backend = "setuptools.build_meta"