diff options
author | Gene C | 2025-04-24 13:21:49 -0400 |
---|---|---|
committer | Gene C | 2025-04-24 13:21:49 -0400 |
commit | 30d11e71a3d0ea6e631c18b8f6acf0779aa2b1d0 (patch) | |
tree | dddf1c7c5906a95984908fa835b17fd271cac71a | |
parent | 525f5a616612b0216eca38a80f787a06dc77858a (diff) | |
download | aur-30d11e71a3d0ea6e631c18b8f6acf0779aa2b1d0.tar.gz |
update project version 1.1.3
-rw-r--r-- | .SRCINFO | 5 | ||||
-rw-r--r-- | Changelog | 9 | ||||
-rw-r--r-- | PKGBUILD | 4 |
3 files changed, 14 insertions, 4 deletions
@@ -1,6 +1,6 @@ pkgbase = pyconcurrent pkgdesc = Python module to simplify asyncio/multiprocessing - pkgver = 1.1.2 + pkgver = 1.1.3 pkgrel = 1 url = https://github.com/gene-git/pyconcurrent arch = any @@ -13,7 +13,8 @@ pkgbase = pyconcurrent makedepends = python-pytest makedepends = python-pytest-asyncio depends = python>3.13 - source = git+https://github.com/gene-git/pyconcurrent#tag=1.1.2 + depends = python-dateutil + source = git+https://github.com/gene-git/pyconcurrent#tag=1.1.3 validpgpkeys = 7CCA1BA66669F3273DB52678E5B81343AB9809E1 sha512sums = SKIP diff --git a/Changelog b/Changelog new file mode 100644 index 000000000000..f5b2461fe8a4 --- /dev/null +++ b/Changelog @@ -0,0 +1,9 @@ +------------------------------------------------------- + Changelog : pyconcurrent + Tags : ➙ 1.1.3 + : ➙ 2025-04-24 + : 6 tags. See Docs for full changelog +------------------------------------------------------- + + 2025-04-24 : 1.1.3 + Add dateutil dep to PKGBUILD @@ -12,7 +12,7 @@ pkgname='pyconcurrent' pkgdesc='Python module to simplify asyncio/multiprocessing' _gitname='pyconcurrent' -pkgver=1.1.2 +pkgver=1.1.3 pkgrel=1 url="https://github.com/gene-git/pyconcurrent" @@ -20,7 +20,7 @@ arch=(any) license=(MIT) # To build docs uncommont sphinx/texlive -depends=('python>3.13') +depends=('python>3.13' 'python-dateutil') makedepends=('git' 'python-build' 'python-wheel' 'python-hatch' 'rsync' 'python-pytest' 'python-pytest-asyncio' #'python-sphinx' 'python-myst-parser' 'texlive-latexextra' 'python-sphinx-autoapi' |