diff options
author | Kai Knoblich <kai@FreeBSD.org> | 2023-03-16 06:53:08 +0100 |
---|---|---|
committer | Kai Knoblich <kai@FreeBSD.org> | 2023-03-16 06:53:08 +0100 |
commit | ad96d9888ffd3892e22636c2eca7609a5bf0cc90 (patch) | |
tree | e634e7cb302d95cc4b89c8163831970951c42cce /textproc/py-pymdown-extensions/files/patch-setup.py | |
parent | textproc/py-mkdocs-material-extensions: Switch to PEP517 (diff) |
textproc/py-pymdown-extensions: Update to 9.9.2
* Switch to PEP517 build framework and remove no longer required
setuptools workaround.
Changelog since 9.9:
https://github.com/facelessuser/pymdown-extensions/compare/9.9...9.9.2
MFH: No (PEP517 support not present in 2023Q1 branch)
Diffstat (limited to 'textproc/py-pymdown-extensions/files/patch-setup.py')
-rw-r--r-- | textproc/py-pymdown-extensions/files/patch-setup.py | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/textproc/py-pymdown-extensions/files/patch-setup.py b/textproc/py-pymdown-extensions/files/patch-setup.py deleted file mode 100644 index e9091bddbf99..000000000000 --- a/textproc/py-pymdown-extensions/files/patch-setup.py +++ /dev/null @@ -1,42 +0,0 @@ -Generated via adding - -[tool.hatch.build.targets.sdist] -support-legacy = true - -to setup.py and then run "hatchling build". - ---- setup.py.orig 2022-11-19 11:48:49 UTC -+++ setup.py -@@ -0,0 +1,32 @@ -+# -*- coding: utf-8 -*- -+from setuptools import setup -+ -+setup( -+ name='pymdown-extensions', -+ version='%%DISTVERSION%%', -+ description='Extension pack for Python Markdown.', -+ long_description='', -+ author_email='Isaac Muse <Isaac.Muse@gmail.com>', -+ classifiers=[ -+ 'Development Status :: 5 - Production/Stable', -+ 'Environment :: Console', -+ 'Intended Audience :: Developers', -+ 'License :: OSI Approved :: MIT License', -+ 'Operating System :: OS Independent', -+ 'Programming Language :: Python :: 3', -+ 'Programming Language :: Python :: 3.7', -+ 'Programming Language :: Python :: 3.8', -+ 'Programming Language :: Python :: 3.9', -+ 'Programming Language :: Python :: 3.10', -+ 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', -+ 'Topic :: Software Development :: Libraries :: Python Modules', -+ 'Topic :: Text Processing :: Filters', -+ 'Topic :: Text Processing :: Markup :: HTML', -+ ], -+ install_requires=[ -+ 'markdown>=3.2', -+ ], -+ packages=[ -+ 'pymdownx', -+ ], -+) |