Skip to content

Commit ccbe7a5

Browse files
pyup-botjambonrose
authored andcommitted
Dependency update (#63)
This updates the following packages: - faker from 0.8.7 to 0.8.8 - django-extensions from 1.9.7 to 1.9.8 - flake8-commas from 0.4.3 to 1.0.0 - flake8-quotes from 0.12.0 to 0.13.0 - setuptools from 38.2.3 to 38.4.0 To avoid a bug in pylint-django (caused by changes in the new minor releases of pylint and astroid), pylint and astroid versions are pinned to the last safe versions. pylint-dev/pylint-django#108 Finally, all versions of Django 2.0 have the alpha version removed, creating ranges for only stable versions. Django 2.0 is used when building documentation instead of Django 1.11.
1 parent 2976ea2 commit ccbe7a5

File tree

8 files changed

+17
-16
lines changed

8 files changed

+17
-16
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
- DJANGO='django>=1.8,<1.9'
1313
- DJANGO='django>=1.10,<1.11'
1414
- DJANGO='django>=1.11,<1.12'
15-
- DJANGO='django>=2.0a,<2.1'
15+
- DJANGO='django>=2.0,<2.1'
1616
- DJANGO=https://github.com/django/django/archive/master.tar.gz
1717
matrix:
1818
exclude:
@@ -34,7 +34,7 @@ matrix:
3434
- python: 3.6
3535
env: DJANGO=https://github.com/django/django/archive/master.tar.gz
3636
- python: 3.7-dev
37-
env: DJANGO='django>=2.0a,<2.1'
37+
env: DJANGO='django>=2.0,<2.1'
3838
- python: 3.7-dev
3939
env: DJANGO=https://github.com/django/django/archive/master.tar.gz
4040
install:

appveyor.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ environment:
2424
DJANGO: "django>=1.11,<1.12"
2525

2626
- PYTHON: "C:\\Python34"
27-
DJANGO: "django>=2.0a,<2.1"
27+
DJANGO: "django>=2.0,<2.1"
2828

2929
- PYTHON: "C:\\Python35"
3030
DJANGO: "django>=1.8,<1.9"
@@ -36,13 +36,13 @@ environment:
3636
DJANGO: "django>=1.11,<1.12"
3737

3838
- PYTHON: "C:\\Python35"
39-
DJANGO: "django>=2.0a,<2.1"
39+
DJANGO: "django>=2.0,<2.1"
4040

4141
- PYTHON: "C:\\Python36"
4242
DJANGO: "django>=1.11,<1.12"
4343

4444
- PYTHON: "C:\\Python36"
45-
DJANGO: "django>=2.0a,<2.1"
45+
DJANGO: "django>=2.0,<2.1"
4646

4747

4848
init:

doc-requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
Django>=1.11,<2.0
1+
Django>=2.0,<2.1
22
factory_boy==2.9.2
3-
Faker==0.8.7
3+
Faker==0.8.8
44
Pygments==2.2.0
55
python-dateutil==2.6.1
66
sphinx-rtd-theme==0.2.4
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
django-coverage-plugin==1.5.0
2-
django-extensions==1.9.7
2+
django-extensions==1.9.8
33
factory-boy==2.9.2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
django-coverage-plugin==1.5.0
2-
django-extensions==1.9.7
2+
django-extensions==1.9.8
33
django-registration==2.3
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
django-coverage-plugin==1.5.0
2-
django-extensions==1.9.7
2+
django-extensions==1.9.8

requirements.txt

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
1+
astroid==1.5.3
12
bumpversion==0.5.3
23
check-manifest==0.36
34
coverage==4.4.2
45
docutils==0.14
56
factory_boy==2.9.2
6-
Faker==0.8.7
7-
flake8-commas==0.4.3
8-
flake8-quotes==0.12.0
7+
Faker==0.8.8
8+
flake8-commas==1.0.0
9+
flake8-quotes==0.13.0
910
flake8==3.5.0
1011
Pygments==2.2.0
1112
pylint-django==0.7.2
12-
pylint==1.7.4
13+
pylint==1.7.5
1314
python-dateutil==2.6.1
14-
setuptools==38.2.3
15+
setuptools==38.4.0
1516
tox==2.9.1
1617
twine==1.9.1
1718
wheel==0.30.0

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ deps =
3434
django18: Django>=1.8,<1.9
3535
django110: Django>=1.10,<1.11
3636
django111: Django>=1.11,<2.0
37-
django20: Django>=2.0a,<2.1
37+
django20: Django>=2.0,<2.1
3838
djangomaster: https://github.com/django/django/archive/master.tar.gz
3939
commands =
4040
docs: sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html

0 commit comments

Comments
 (0)