Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
aports
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
alpine
aports
Commits
70e44ca4
Commit
70e44ca4
authored
3 years ago
by
Kevin Daudt
Browse files
Options
Downloads
Patches
Plain Diff
community/py3-cligj: work with click 8.x
parent
9a2cef2a
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
community/py3-cligj/APKBUILD
+5
-1
5 additions, 1 deletion
community/py3-cligj/APKBUILD
community/py3-cligj/click-is-version-8.patch
+12
-0
12 additions, 0 deletions
community/py3-cligj/click-is-version-8.patch
with
17 additions
and
1 deletion
community/py3-cligj/APKBUILD
+
5
−
1
View file @
70e44ca4
...
...
@@ -20,6 +20,7 @@ checkdepends="
"
source
=
"
py3-cligj-
$pkgver
.tar.gz::https://github.com/mapbox/cligj/archive/
$pkgver
.tar.gz
click-is-version-8.patch
"
builddir
=
"
$srcdir
/cligj-
$pkgver
"
...
...
@@ -35,4 +36,7 @@ package() {
python3 setup.py
install
--prefix
=
/usr
--root
=
"
$pkgdir
"
--optimize
=
2
}
sha512sums
=
"34cd6c6a2ff1e268443d74694608e2acf92a31b93ffd53bd0f7280b8e0a18d3c25f98b9206638ee50793b714bea01593bb67becfd7d70322ad6d609d552465a9 py3-cligj-0.7.1.tar.gz"
sha512sums
=
"
34cd6c6a2ff1e268443d74694608e2acf92a31b93ffd53bd0f7280b8e0a18d3c25f98b9206638ee50793b714bea01593bb67becfd7d70322ad6d609d552465a9 py3-cligj-0.7.1.tar.gz
87adce2427d00715bc071f1399f3dba76d07d4a13a3b944dd348d1606fdf3bc061e3bda2ee0c8066c055cf34b3ca0d2986db00bbc38185ced688399678ed0e58 click-is-version-8.patch
"
This diff is collapsed.
Click to expand it.
community/py3-cligj/click-is-version-8.patch
0 → 100644
+
12
−
0
View file @
70e44ca4
diff --git a/setup.py b/setup.py
index a12dde1..2ccaa62 100755
--- a/setup.py
+++ b/setup.py
@@ -27,6 +27,6 @@
setup(
include_package_data=True,
zip_safe=False,
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4",
- install_requires=["click >= 4.0, < 8"],
+ install_requires=["click >= 4.0, < 9"],
extras_require={"test": ["pytest-cov"],},
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment