diff --git a/.SRCINFO b/.SRCINFO index 3f5dcf2..e797b93 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = python-pydicom pkgdesc = Pure python package for working with DICOM files pkgver = 1.1.0 - pkgrel = 2 + pkgrel = 3 url = https://pydicom.github.io/pydicom/stable/index.html arch = x86_64 license = MIT diff --git a/PKGBUILD b/PKGBUILD index e0cc096..32af00c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: Andrzej Giniewicz pkgname=('python-pydicom' 'python2-pydicom') pkgver=1.1.0 -pkgrel=2 +pkgrel=3 pkgdesc="Pure python package for working with DICOM files" arch=("x86_64") url="https://pydicom.github.io/pydicom/stable/index.html" @@ -47,7 +47,9 @@ check() cd "$srcdir/pydicom-$pkgver" # Test suite has a known issue with Pillow 5 and up # See: https://github.com/pydicom/pydicom/issues/663 + # Timezone test isn't supposed to run in python 3, but it does # Don't write byte code to prevent a "$srcdir in pkg" error on rebuilds PYTHONDONTWRITEBYTECODE=1 \ - pytest --deselect=pydicom/tests/test_pillow_pixel_data.py::test_PI_RGB[JPEG_RGB_RGB] + pytest --deselect=pydicom/tests/test_pillow_pixel_data.py::test_PI_RGB[JPEG_RGB_RGB] \ + --deselect pydicom/tests/test_fixes.py::TestTimeZone::test_constructor }