git: f22905fdc55c - main - textproc/py-myst-parser: Update to 0.18.1
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 03 Oct 2022 17:14:20 UTC
The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=f22905fdc55c34e33fba6da9e16ca7d7dbbab1a5 commit f22905fdc55c34e33fba6da9e16ca7d7dbbab1a5 Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org> AuthorDate: 2022-10-03 17:06:01 +0000 Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org> CommitDate: 2022-10-03 17:10:41 +0000 textproc/py-myst-parser: Update to 0.18.1 Changes: https://github.com/executablebooks/MyST-Parser/releases https://myst-parser.readthedocs.io/en/latest/develop/_changelog.html --- textproc/py-myst-parser/Makefile | 6 +++--- textproc/py-myst-parser/distinfo | 6 +++--- textproc/py-myst-parser/files/setup.py | 7 ++++--- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/textproc/py-myst-parser/Makefile b/textproc/py-myst-parser/Makefile index cb470abc81e1..7fe6d1b4842f 100644 --- a/textproc/py-myst-parser/Makefile +++ b/textproc/py-myst-parser/Makefile @@ -1,5 +1,5 @@ PORTNAME= myst-parser -PORTVERSION= 0.18.0 +PORTVERSION= 0.18.1 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,10 +11,10 @@ WWW= https://github.com/executablebooks/MyST-Parser LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}docutils>=0.15,1<0.19,1:textproc/py-docutils@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}docutils>=0.15,1<0.20,1:textproc/py-docutils@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}Jinja2>=0:devel/py-Jinja2@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}markdown-it-py>=1.0.0<3.0.0:textproc/py-markdown-it-py@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}mdit-py-plugins>=0.3.0<0.4:textproc/py-mdit-py-plugins@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}mdit-py-plugins>=0.3.1<0.4:textproc/py-mdit-py-plugins@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}yaml>=0:devel/py-yaml@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}sphinx>=4,1<6,1:textproc/py-sphinx@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}typing-extensions>=0:devel/py-typing-extensions@${PY_FLAVOR} diff --git a/textproc/py-myst-parser/distinfo b/textproc/py-myst-parser/distinfo index 92dadc35ae19..f246f34952f6 100644 --- a/textproc/py-myst-parser/distinfo +++ b/textproc/py-myst-parser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654708398 -SHA256 (myst-parser-0.18.0.tar.gz) = 739a4d96773a8e55a2cacd3941ce46a446ee23dcd6b37e06f73f551ad7821d86 -SIZE (myst-parser-0.18.0.tar.gz) = 63698 +TIMESTAMP = 1664767992 +SHA256 (myst-parser-0.18.1.tar.gz) = 79317f4bb2c13053dd6e64f9da1ba1da6cd9c40c8a430c447a7b146a594c246d +SIZE (myst-parser-0.18.1.tar.gz) = 64147 diff --git a/textproc/py-myst-parser/files/setup.py b/textproc/py-myst-parser/files/setup.py index 94577871625d..9ee4305c51d1 100644 --- a/textproc/py-myst-parser/files/setup.py +++ b/textproc/py-myst-parser/files/setup.py @@ -14,10 +14,10 @@ package_data = \ {'': ['*']} install_requires = \ -['docutils>=0.15,<0.19', +['docutils>=0.15,<0.20', 'jinja2', 'markdown-it-py>=1.0.0,<3.0.0', - 'mdit-py-plugins~=0.3.0', + 'mdit-py-plugins~=0.3.1', 'pyyaml', 'sphinx>=4,<6', 'typing-extensions'] @@ -37,7 +37,8 @@ extras_require = \ 'pytest-cov', 'pytest-regressions', 'pytest-param-files~=0.3.4', - 'sphinx-pytest']} + 'sphinx-pytest', + 'sphinx<5.2']} entry_points = \ {'console_scripts': ['myst-anchors = myst_parser.cli:print_anchors',