Date: Thursday, March 25, 2021 @ 23:19:09 Author: arojas Revision: 904247
Update to 4.7.1 Modified: python-jupyter_core/trunk/PKGBUILD ----------+ PKGBUILD | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2021-03-25 23:14:19 UTC (rev 904246) +++ PKGBUILD 2021-03-25 23:19:09 UTC (rev 904247) @@ -1,8 +1,8 @@ # Maintainer: Kyle Keen <[email protected]> pkgname=python-jupyter_core -pkgver=4.6.3 -pkgrel=4 +pkgver=4.7.1 +pkgrel=1 pkgdesc="Jupyter core package. A base package on which Jupyter projects rely." arch=('any') url="https://pypi.python.org/pypi/jupyter_core" @@ -11,7 +11,7 @@ makedepends=('python-setuptools') checkdepends=('python-pytest' 'python-nose') source=("$pkgname-$pkgver.tgz::https://github.com/jupyter/jupyter_core/archive/$pkgver.tar.gz") -sha256sums=('ae2da229683fd091286c05acbbbac1b5279031a0454c0106b2547ba853ad2ac8') +sha256sums=('dfdd5af7aceb79b41b4a57fef580f56d4ad5102bffdc723cb4f442926f0dc48f') prepare() { cd "$srcdir/jupyter_core-$pkgver" @@ -18,7 +18,8 @@ } build() { - cd "$srcdir" + cd "$srcdir/jupyter_core-$pkgver" + python setup.py build } check() { @@ -25,7 +26,8 @@ cd "$srcdir/jupyter_core-$pkgver" pytest \ --deselect jupyter_core/tests/test_command.py::test_not_on_path \ - --deselect jupyter_core/tests/test_command.py::test_path_priority + --deselect jupyter_core/tests/test_command.py::test_path_priority \ + --deselect jupyter_core/tests/test_paths.py::test_jupyter_path_prefer_env # https://github.com/jupyter/jupyter_core/issues/208 } package() {
