Skip to content

Commit 596a2fa

Browse files
committed
[fix] lxml version
1 parent 6cf06c4 commit 596a2fa

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ bionic-image:
5757
docker build -t pypi-server:bionic -f package/Dockerfile.bionic package
5858

5959
docker-image:
60-
docker build -t mosquito/pypi-server:$(VERSION) --squash .
60+
docker build -t mosquito/pypi-server:$(VERSION) .
6161
docker tag mosquito/pypi-server:$(VERSION) mosquito/pypi-server:latest

pypi_server/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
("Dmitry Orlov", "[email protected]")
1010
]
1111

12-
version_info = (0, 4, 9)
12+
version_info = (0, 4, 10)
1313

1414
__version__ = ".".join(map(str, version_info))
1515
__author__ = ", ".join("{0} <{1}>".format(*author) for author in author_info)

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@ def walker(base, *paths):
8282
'slimurl',
8383
'peewee<3',
8484
'bcrypt>=2.0',
85-
'lxml',
85+
# For building with Debian. By default is uses python3.4
86+
'lxml<4.4',
8687
'futures',
8788
'six',
8889
),

0 commit comments

Comments
 (0)