diff options
author | Kevin Daudt <ops@ikke.info> | 2018-09-17 17:23:53 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-09-27 06:18:40 +0000 |
commit | 50ee3285c9dbc2c2f7082bd95e233b4c4fd045c8 (patch) | |
tree | a91915e2316b8accada5ad9347d0f5af52080c19 /testing/py-praw/relax-version-requirements.patch | |
parent | 2ffda0a11bee55e51ffd08059606d56be69a4079 (diff) | |
download | aports-50ee3285c9dbc2c2f7082bd95e233b4c4fd045c8.tar.bz2 aports-50ee3285c9dbc2c2f7082bd95e233b4c4fd045c8.tar.xz |
testing/py-praw: relax setup.py version constraints
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.
Diffstat (limited to 'testing/py-praw/relax-version-requirements.patch')
-rw-r--r-- | testing/py-praw/relax-version-requirements.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/testing/py-praw/relax-version-requirements.patch b/testing/py-praw/relax-version-requirements.patch new file mode 100644 index 0000000000..3bfac8917c --- /dev/null +++ b/testing/py-praw/relax-version-requirements.patch @@ -0,0 +1,18 @@ +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', |