python3-constantly: rebuild for Python 3.12

This commit is contained in:
Andrew J. Hesford 2023-09-23 21:01:06 -04:00
parent dc1fe88ae1
commit 8901f29f10
2 changed files with 15 additions and 1 deletions

View File

@ -0,0 +1,14 @@
--- a/versioneer.py
+++ b/versioneer.py
@@ -396,9 +396,9 @@
# configparser.NoOptionError (if it lacks "VCS="). See the docstring at
# the top of versioneer.py for instructions on writing your setup.cfg .
setup_cfg = os.path.join(root, "setup.cfg")
- parser = configparser.SafeConfigParser()
+ parser = configparser.ConfigParser()
with open(setup_cfg, "r") as f:
- parser.readfp(f)
+ parser.read_file(f)
VCS = parser.get("versioneer", "VCS") # mandatory
def get(parser, name):

View File

@ -1,7 +1,7 @@
# Template file for 'python3-constantly'
pkgname=python3-constantly
version=15.1.0
revision=7
revision=8
build_style=python3-module
hostmakedepends="python3-setuptools"
depends="python3"