forked from pool/python-pecan
f836ee8806
- version update to 1.4.0
* pecan now requires webob >= 1.8
* fixed a bug when parsing certain Accept headers
(https://github.com/Pylons/webob/issues/403)
* removed official support for Python 3.5
- Rebase patch:
* pecan-no-kajiki.patch
- Add patches to support SQLAlchemy 1.4.x (gh#pecan/pecan#125)
* 0001-Support-SQLAlchemy-1.4.x.patch
* 0002-Fix-typo-from-bad-copy-paste.patch
OBS-URL: https://build.opensuse.org/request/show/890783
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pecan?expand=0&rev=52
23 lines
694 B
Diff
23 lines
694 B
Diff
Index: pecan-1.3.2/setup.py
|
|
===================================================================
|
|
--- pecan-1.3.2.orig/setup.py
|
|
+++ pecan-1.3.2/setup.py
|
|
@@ -35,15 +35,8 @@ tests_require = requirements + [
|
|
|
|
tests_require = requirements + test_requirements
|
|
|
|
-if sys.version_info < (3, 0):
|
|
- # These don't support Python3 yet - don't run their tests
|
|
- if platform.python_implementation() != 'PyPy':
|
|
- # Kajiki is not pypy-compatible
|
|
- tests_require += ['Kajiki']
|
|
- tests_require += ['Genshi']
|
|
-else:
|
|
- # Genshi added Python3 support in 0.7
|
|
- tests_require += ['Genshi>=0.7']
|
|
+# Genshi added Python3 support in 0.7
|
|
+tests_require += ['Genshi>=0.7']
|
|
|
|
#
|
|
# call setup
|