mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-26 08:51:25 +02:00
Alpine ships newer versions of decorator, prawcore and six than setup.py allows. Preliminary testing with relaxing the version constraints seem to indicate that newer versions work as well.
19 lines
793 B
Diff
19 lines
793 B
Diff
diff --git a/setup.py b/setup.py.new
|
|
index 2cc9975725..1f2e5dffba 100644
|
|
--- a/setup.py
|
|
+++ b/setup.py.new
|
|
@@ -36,10 +36,10 @@ setup(name=PACKAGE_NAME,
|
|
description=('PRAW, an acronym for `Python Reddit API Wrapper`, is a '
|
|
'python package that allows for simple access to '
|
|
'reddit\'s API.'),
|
|
- install_requires=['decorator >=4.0.9, <4.1',
|
|
- 'prawcore >=0.3.0, <0.4',
|
|
+ install_requires=['decorator >=4.0.9, <4.4',
|
|
+ 'prawcore >=0.3.0',
|
|
'requests >=2.3.0',
|
|
- 'six ==1.10',
|
|
+ 'six >=1.10',
|
|
'update_checker >=0.12'],
|
|
keywords='reddit api wrapper',
|
|
license='Simplified BSD License',
|