mirror of
https://github.com/Hopiu/wagtail-modeltranslation.git
synced 2026-03-16 22:10:30 +00:00
Fixed travis.yml.
Lowered minimum Wagtail version to 1.4 as there seems to be no incompatibilities.
This commit is contained in:
parent
31cc990aec
commit
556d284460
2 changed files with 8 additions and 7 deletions
13
.travis.yml
13
.travis.yml
|
|
@ -5,13 +5,14 @@ python:
|
|||
- "3.4"
|
||||
- "3.5"
|
||||
env:
|
||||
- WAGTAIL=wagtail>=1.4,<1.5
|
||||
- WAGTAIL=wagtail>=1.5,<1.6
|
||||
- WAGTAIL=wagtail>=1.6,<1.7
|
||||
- WAGTAIL=wagtail>=1.7,<1.8
|
||||
- WAGTAIL=wagtail>=1.8,<1.9
|
||||
- WAGTAIL=wagtail>=1.9,<1.10
|
||||
- WAGTAIL="wagtail>=1.4,<1.5"
|
||||
- WAGTAIL="wagtail>=1.5,<1.6"
|
||||
- WAGTAIL="wagtail>=1.6,<1.7"
|
||||
- WAGTAIL="wagtail>=1.7,<1.8"
|
||||
- WAGTAIL="wagtail>=1.8,<1.9"
|
||||
- WAGTAIL="wagtail>=1.9,<1.10"
|
||||
install:
|
||||
- pip install --upgrade -q setuptools
|
||||
- pip install -q $WAGTAIL
|
||||
- pip install -e .
|
||||
script:
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -24,7 +24,7 @@ setup(
|
|||
'wagtail_modeltranslation.templatetags'],
|
||||
package_data={'wagtail_modeltranslation': ['static/wagtail_modeltranslation/css/*.css',
|
||||
'static/wagtail_modeltranslation/js/*.js']},
|
||||
install_requires=['wagtail(>=1.9)', 'django-modeltranslation(<=0.12.99)'],
|
||||
install_requires=['wagtail(>=1.4)', 'django-modeltranslation(<=0.12.99)'],
|
||||
download_url='https://github.com/infoportugal/wagtail-modeltranslation/archive/v0.6rc1.tar.gz',
|
||||
classifiers=[
|
||||
'Programming Language :: Python',
|
||||
|
|
|
|||
Loading…
Reference in a new issue