-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPipfile
57 lines (54 loc) · 1.54 KB
/
Pipfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[requires]
python_version = "3.8"
[packages]
boto3 = "~=1.11"
django-annoying = "~=0.10"
django-autoslug = "==1.9.6"
#django-db-logger = "==0.1.8rc1"
# lsh@2020-09: not semver, 2.3 drops support for Django 1.11
# lsh@2022-02: I can't see how this is being used, disabling.
#django-filter = "==2.2.*"
django-markdown2 = "~=0.3"
django-sql-explorer = "~=2.4"
et3 = "~=1.5"
# lsh@2020-07: pinned, isort==5.0.3 has changed it's api
isort = "~=4.3"
joblib = "~=1.2"
jsonschema = "~=3.2"
ordered-set = "~=3.1"
# psycopg2 doesn't use semver.
# psycopg2 2.9.x isn't compatible with django 2.2:
# https://github.com/psycopg/psycopg2/issues/1293
psycopg2 = "==2.8.*"
python-dateutil = "~=2.8"
python-json-logger = "~=0.1"
python-slugify = "~=4.0"
pytz = "*"
requests = "~=2.22"
rfc3339 = "~=6.2"
# django doesn't use semver.
# minor releases may introduce breaking and backwards incompatible changes:
# https://docs.djangoproject.com/el/3.0/internals/release-process/
Django = "==3.2.*"
PyYAML = "~=5.3"
uWSGI = "~=2.0"
[dev-packages]
# lsh@2022-03-14: greater versions not available for python3.8.
# remove once using python3.8 exclusively
dataclasses = "<=0.6"
unittest-xml-reporting = "==2.5.2"
coverage = "~=5.0"
black = "*"
pyflakes = "~=2.1"
# lsh@2022-10-10: pylint has broken again in 2.15.3, pinning it to patch versions of 2.14 only
pylint = "==2.14.*"
pylint-django = "~=2.0"
pytest = "~=7.2"
pytest-cov = "~=2.8"
pytest-django = "~=4.1"
# run pytest in parallel with `-n` switch
pytest-xdist = "~=3.0"