summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorBao Trinh2024-03-15 10:16:51 -0500
committerBao Trinh2024-03-15 10:16:51 -0500
commit7eecfba75a1c0527a6f384811ddb193d81ea1d6a (patch)
tree60179de106f63636fcbe90b570d19f39036a73f3
parenta33f219c0b45dcd88535f96184629061e194df8c (diff)
downloadaur-python-autoflake.tar.gz
remove tomli dependency
since we're on python 3.11 now
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD4
2 files changed, 2 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index dd24dac11276..507bc7421230 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = python-autoflake
pkgdesc = Removes unused imports and unused variables
pkgver = 2.3.1
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/PyCQA/autoflake
arch = any
license = MIT
@@ -11,7 +11,6 @@ pkgbase = python-autoflake
makedepends = python-installer
depends = python
depends = python-pyflakes
- depends = python-tomli
source = python-autoflake-2.3.1.tar.gz::https://github.com/PyCQA/autoflake/archive/refs/tags/v2.3.1.tar.gz
sha256sums = d1b3c651efcd005d602fe16a9c69c011a11bcd189cfc1880128fee39fd009ac0
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'