Skip to content

Commit a2ac14b

Browse files
committed
Bump requirements
1 parent 125f9b9 commit a2ac14b

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ version: 2
66
jobs:
77
build:
88
docker:
9-
- image: python:3.6
9+
- image: python:3.9.1-slim-buster
1010
steps:
1111
- checkout
1212
- run:
1313
name: Install python-dev
1414
command: |
1515
apt-get update;
16-
apt-get install -y python-dev
16+
apt-get install -y python-dev git
1717
- run:
1818
name: Install Tox
1919
command: pip install tox

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
PyYAML==5.1
2-
django==1.11
2+
django==1.11.29
33
mistune==0.7.3
44
polib==1.0.3
55
pyparsing==2.2.0
66
six
77

88
# InDesign
9-
lxml==4.1.1
9+
lxml==4.3.3
1010
git+git://github.com/kbairak/ucflib@py3_compatibility

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
'mistune==0.7.3',
99
'PyYAML==5.1',
1010
'pyparsing==2.2.0',
11-
'lxml==4.1.1',
11+
'lxml==4.3.3',
1212
'ucflib @ git+https://github.com/kbairak/ucflib.git@py3_compatibility#egg=ucflib-0.2.1', # noqa
1313
]
1414

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
33
py27
4-
py36
4+
py39
55
report
66

77
[testenv]

0 commit comments

Comments
 (0)