Skip to content

Commit db7cdeb

Browse files
committed
Pipfile testing on Windows; bumped Pillow since 5.0.0 has no Windows binaries
1 parent d5d81bb commit db7cdeb

File tree

5 files changed

+256
-1
lines changed

5 files changed

+256
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Byte-compiled / optimized / DLL files
22
__pycache__/
3+
.mypy_cache/
34
*.py[cod]
45
*$py.class
56

.venv/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*
2+
!.gitignore

Pipfile

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[[source]]
2+
url = "https://pypi.org/simple"
3+
verify_ssl = true
4+
name = "pypi"
5+
6+
[packages]
7+
django = "==2.0.1"
8+
dj-database-url = "==0.4.1"
9+
python-decouple = "==3.1"
10+
django-ckeditor = "==5.4.0"
11+
django-model-utils = "==2.5"
12+
pillow = "==5.1.0"
13+
14+
[dev-packages]
15+
pylint = "*"
16+
mypy = "*"
17+
18+
[requires]
19+
python_version = "3.7"

Pipfile.lock

Lines changed: 233 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ lxml==3.6.1
2828
mccabe==0.6.1
2929
oauthlib==2.0.6
3030
paramiko==2.4.*
31-
Pillow==5.0.0
31+
Pillow==5.1.0
3232
pluggy==0.6.0
3333
py==1.5.2
3434
pyasn1==0.4.2

0 commit comments

Comments
 (0)