textproc/py-marko: Update to 1.2.0

Changes:	https://github.com/frostming/marko/blob/master/CHANGELOG.md
This commit is contained in:
Po-Chuan Hsieh 2022-01-24 02:20:58 +08:00
parent 20f7440537
commit 0f0e1d4f3e
No known key found for this signature in database
GPG key ID: 9A4BD10F002DD04B
3 changed files with 7 additions and 8 deletions

View file

@ -1,7 +1,7 @@
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> # Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
PORTNAME= marko PORTNAME= marko
PORTVERSION= 1.1.0 PORTVERSION= 1.2.0
CATEGORIES= textproc python CATEGORIES= textproc python
MASTER_SITES= CHEESESHOP MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1632760430 TIMESTAMP = 1642102355
SHA256 (marko-1.1.0.tar.gz) = 764316137a2f1ada070958870208ea5b6e4eda879ee4b743552aaebf9d0397f7 SHA256 (marko-1.2.0.tar.gz) = 0befa554da3d14b7a38ac7473ffde60f1916fd1d0aaf67181ae70bfe00fdba18
SIZE (marko-1.1.0.tar.gz) = 135642 SIZE (marko-1.2.0.tar.gz) = 138708

View file

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from setuptools import setup from setuptools import setup
@ -16,8 +15,8 @@ EXTRAS_REQUIRE = {
'benchmark': [ 'benchmark': [
'commonmark~=0.9', 'commonmark~=0.9',
'markdown~=3.3', 'markdown~=3.3',
'markdown-it-py~=0.6', 'markdown-it-py~=2.0',
'mistune~=0.8', 'mistune~=2.0',
'mistletoe~=0.7', 'mistletoe~=0.7',
], ],
} }
@ -48,13 +47,13 @@ setup_kwargs = {
'classifiers': [ 'classifiers': [
'Development Status :: 5 - Production/Stable', 'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers', 'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent', 'Operating System :: OS Independent',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
], ],
'extras_require': EXTRAS_REQUIRE, 'extras_require': EXTRAS_REQUIRE,
'python_requires': '>=3.6', 'python_requires': '>=3.6',