Package Details: python-glyphsets 1.0.0-1

Git Clone URL: https://aur.archlinux.org/python-glyphsets.git (read-only, click to copy)
Package Base: python-glyphsets
Description: an API with data about glyph sets for many different scripts and languages
Upstream URL: https://github.com/googlefonts/glyphsets
Licenses: Apache-2.0
Submitter: alerque
Maintainer: alerque
Last Packager: alerque
Votes: 0
Popularity: 0.000000
First Submitted: 2022-02-15 13:27 (UTC)
Last Updated: 2024-05-03 09:59 (UTC)

Latest Comments

peippo commented on 2024-05-20 07:32 (UTC)

python-setuptools-scm was updated to 8.1.0 which glyphsets explicitly excludes in its setup.py, consequently, this PKGBUILD fails. However, I found that builds succeed just fine if the setup.py is patched:

diff --unified --recursive --text a/setup.py b/setup.py
--- a/setup.py  2024-05-03 11:49:24.000000000 +0200
+++ b/setup.py  2024-05-20 09:27:00.893688795 +0200
@@ -60,7 +60,7 @@
         "Programming Language :: Python :: 3",
     ],
     python_requires=">=3.8",
-    setup_requires=["setuptools_scm>=8.0.4,<8.1"],
+    setup_requires=["setuptools_scm>=8.0.4"],
     install_requires=[
         "requests",
         "setuptools",

Could you update the PKGBUILD? Thanks!