git » python-myst-parser.git » commit 46272fb

upgpkg: 2.0.0-1

author Daniel M. Capella
2023-08-16 22:23:39 UTC
committer Daniel M. Capella
2023-08-16 22:23:39 UTC
parent a64d98da0b278b27ad7b6a4a2a2d338d68e65911

upgpkg: 2.0.0-1

Also skip test_myst_refs, which were also erroring out on 1.0.0.

PKGBUILD +5 -5

diff --git a/PKGBUILD b/PKGBUILD
index ed74e77..f2044f4 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,18 +3,18 @@
 
 _pkgname=MyST-Parser
 pkgname=python-myst-parser
-pkgver=1.0.0
-pkgrel=5
+pkgver=2.0.0
+pkgrel=1
 pkgdesc='An extended commonmark compliant parser, with bridges to docutils/sphinx'
 arch=('any')
 url='https://github.com/executablebooks/MyST-Parser'
 license=('MIT')
-depends=('python' 'python-docutils' 'python-jinja' 'python-markdown-it-py' 'python-mdit_py_plugins' 'python-pygments' 'python-sphinx' 'python-typing_extensions' 'python-yaml')
+depends=('python' 'python-docutils' 'python-jinja' 'python-markdown-it-py' 'python-mdit_py_plugins' 'python-pygments' 'python-sphinx' 'python-yaml')
 optdepends=('python-linkify-it-py: linkify support')
 makedepends=('python-build' 'python-installer' 'python-flit-core' 'python-wheel')
 checkdepends=('python-beautifulsoup4' 'python-linkify-it-py' 'python-pytest' 'python-pytest-param-files' 'python-pytest-regressions' 'python-sphinx-pytest')
 source=("$url/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
-sha512sums=('1f0ecffd2c84b0db5d251dbc771457cdf52a8e6e540d3acde563115af24ce30d43e01223f172b3e72b2c81862052bb05ea5d7c6091f933afbda0a859d1b86e83')
+sha512sums=('c47bdd773565e93c4714d318a70f9a8adab1be6e2a63c23175667fc4afb5da4d66b84e11176782c8202e9fd68883e74d444911ddfb0b91356c2ba07fa65f7ea4')
 
 build() {
   cd $_pkgname-$pkgver
@@ -26,7 +26,7 @@ check() {
   cd $_pkgname-$pkgver
 
   python -m pytest \
-    -k 'not test_sphinx_builds and not fixtures and not test_myst_config' \
+    -k 'not test_sphinx_builds and not fixtures and not test_myst_config and not test_myst_refs' \
     --disable-warnings
 }