git » python-webencodings.git » commit fafd26a

upgpkg: 0.5.1-11: Rebuild with Python 3.12

author Jelle van der Waa
2024-04-04 09:40:32 UTC
committer Jelle van der Waa
2024-04-04 09:40:32 UTC
parent a73e86c7fc555c4cb00a5c912956bbf58dc91334

upgpkg: 0.5.1-11: Rebuild with Python 3.12

.SRCINFO +15 -0
PKGBUILD +3 -3

diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 0000000..a865012
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
+pkgbase = python-webencodings
+	pkgdesc = This is a Python implementation of the WHATWG Encoding standard.
+	pkgver = 0.5.1
+	pkgrel = 11
+	url = https://github.com/gsnedders/python-webencodings
+	arch = any
+	license = BSD
+	checkdepends = python-pytest
+	makedepends = python
+	makedepends = python-setuptools
+	depends = python
+	source = python-webencodings-0.5.1.tar.gz::https://github.com/gsnedders/python-webencodings/archive/v0.5.1.tar.gz
+	sha256sums = 082367f568a7812aa5f6922ffe3d9d027cd83829dc32bcaac4c874eeed618000
+
+pkgname = python-webencodings
diff --git a/PKGBUILD b/PKGBUILD
index 6be2042..036b88b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,14 +3,14 @@
 
 pkgname=python-webencodings
 pkgver=0.5.1
-pkgrel=10
+pkgrel=11
 arch=('any')
 url="https://github.com/gsnedders/python-webencodings"
 license=('BSD')
 pkgdesc="This is a Python implementation of the WHATWG Encoding standard."
 depends=('python')
 makedepends=('python' 'python-setuptools')
-checkdepends=('python-nose')
+checkdepends=('python-pytest')
 source=($pkgname-$pkgver.tar.gz::https://github.com/gsnedders/python-webencodings/archive/v${pkgver}.tar.gz)
 sha256sums=('082367f568a7812aa5f6922ffe3d9d027cd83829dc32bcaac4c874eeed618000')
 
@@ -24,5 +24,5 @@ package_python-webencodings() {
 check() {
     cd ${pkgbase}-${pkgver}/webencodings
 
-    nosetests tests.py
+    pytest tests.py
 }