summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorBao Trinh2024-03-15 10:16:51 -0500
committerBao Trinh2024-03-15 10:16:51 -0500
commit7eecfba75a1c0527a6f384811ddb193d81ea1d6a (patch)
tree60179de106f63636fcbe90b570d19f39036a73f3 /PKGBUILD
parenta33f219c0b45dcd88535f96184629061e194df8c (diff)
downloadaur-python-autoflake.tar.gz
remove tomli dependency
since we're on python 3.11 now
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD4
1 files changed, 1 insertions, 3 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 2111cb3d390a..b909eddd1db6 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,7 +6,7 @@
pkgname=python-autoflake
_pkgname="${pkgname#python-}"
pkgver=2.3.1
-pkgrel=1
+pkgrel=2
pkgdesc='Removes unused imports and unused variables'
arch=(any)
url="https://github.com/PyCQA/autoflake"
@@ -14,8 +14,6 @@ license=("MIT")
depends=(
'python'
'python-pyflakes'
- # required for python<3.11
- 'python-tomli'
)
makedepends=(
'python-build'