Add Debian Stretch requirements

This commit is contained in:
Alexandre Iooss 2019-08-02 13:32:09 +02:00
parent 8571cd36ac
commit ad5a4e2df1
No known key found for this signature in database
GPG Key ID: 6C79278F3FCDCC02
4 changed files with 15 additions and 2 deletions

View File

@ -6,6 +6,11 @@ stages:
before_script:
- pip install tox
python36:
image: python:3.5
stage: test
script: tox -e py35
python36:
image: python:3.6
stage: test

View File

@ -5,7 +5,7 @@ import sys
def main():
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'note_kfet.settings')
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'med.settings')
try:
from django.core.management import execute_from_command_line
except ImportError as exc:

8
requirements.txt Normal file
View File

@ -0,0 +1,8 @@
Django==1.10.7
docutils==0.13.1
Pillow==4.0.0
pytz==2016.7
six==1.10.0
sqlparse==0.2.2
django-reversion==2.0.8
django-bootstrap3==7.1.0

View File

@ -1,5 +1,5 @@
[tox]
envlist = py36,py37,linters
envlist = py35,py36,py37,linters
skipsdist = True
[testenv]