File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1-
2- sudo : false
3- dist : xenial
1+ env :
2+ - DJANGO=3.0
3+ - DJANGO=3.1.7
44language : python
55python :
6- - " 3.6"
76 - " 3.7"
87 - " 3.8"
98addons :
10- postgresql : " 10"
11- env :
12- global :
13- - DJANGO_SETTINGS_MODULE=test_project.settings
14- matrix :
15- - DJANGO=1.9
16- - DJANGO=1.10
17- - DJANGO=1.11
18- - DJANGO=2.0
19- - DJANGO=2.1
20- - DJANGO=3.0
21- - DJANGO=3.0.7
22- matrix :
23- exclude :
24- - python : " 2.7"
25- env : DJANGO=2.0
26- - python : " 2.7"
27- env : DJANGO=2.1
28- - python : " 2.7"
29- env : DJANGO=3.0
30- - python : " 2.7"
31- env : DJANGO=3.0.7
32- - python : " 3.7"
33- env : DJANGO=1.9
34- - python : " 3.7"
35- env : DJANGO=1.10
36- - python : " 3.7"
37- env : DJANGO=1.11
38- - python : " 3.8"
39- env : DJANGO=1.9
40- - python : " 3.8"
41- env : DJANGO=1.10
42- - python : " 3.8"
43- env : DJANGO=1.11
9+ postgresql : ' 12'
10+ apt :
11+ packages :
12+ - postgresql-12
13+ - postgresql-client-12
14+ before_install :
15+ - sudo apt-get update
16+ - sudo sed -i 's/port = 5433/port = 5432/' /etc/postgresql/12/main/postgresql.conf
17+ - sudo sed -i -e '/local.*peer/s/postgres/all/' -e 's/peer\|md5/trust/g' /etc/postgresql/*/main/pg_hba.conf
18+ - sudo service postgresql stop
19+ - sudo service postgresql start 12
20+ - sleep 1
4421install :
4522 - pip install django==${DJANGO} Pillow psycopg2-binary
4623 - pip install .
4724before_script :
4825 - psql -c 'create database test_jsonate;' -U postgres
49-
26+ - psql test_jsonate -c 'CREATE EXTENSION IF NOT EXISTS hstore;' -U postgres
5027script : python test_project/manage.py test test_app
Original file line number Diff line number Diff line change 1- psycopg2-binary == 2.8.4
2- django == 3.0.4
3- pillow == 7.0.0
1+ psycopg2-binary == 2.8.6
2+ django == 3.1.7
3+ pillow == 7.1.1
Original file line number Diff line number Diff line change 22
33setup (
44 name = 'jsonate' ,
5- version = '0.7.0 ' ,
5+ version = '0.7.1 ' ,
66
77 author = 'James Robert' ,
88 author_email = 'jiaaro@gmail.com' ,
1717 url = 'http://jsonate.com' ,
1818
1919 install_requires = [
20- "django>=2 .0" ,
20+ "django>=3 .0" ,
2121 ],
2222
2323 packages = [
You can’t perform that action at this time.
0 commit comments