We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dadf6ea commit 6166006Copy full SHA for 6166006
package/Dockerfile.debian9
@@ -0,0 +1,11 @@
1
+FROM mosquito/fpm:debian8
2
+
3
+RUN apt-get update && apt-get install -y python3-pip python3-dev
4
+RUN pip3 install -U pip virtualenv sh plumbum
5
+RUN apt-get install -y \
6
+ libcurl4-openssl-dev \
7
+ libffi-dev \
8
+ libmysqlclient-dev \
9
+ libpq-dev \
10
+ libxml2-dev \
11
+ libxslt1-dev
pypi_server/__init__.py
@@ -9,7 +9,7 @@
("Dmitry Orlov", "me@mosquito.su")
]
12
-version_info = (0, 4, 8)
+version_info = (0, 4, 9)
13
14
__version__ = ".".join(map(str, version_info))
15
__author__ = ", ".join("{0} <{1}>".format(*author) for author in author_info)
0 commit comments