Skip to content

Commit

Permalink
Merge pull request #96 from icgood/bump
Browse files Browse the repository at this point in the history
Set version 0.20.2
  • Loading branch information
icgood committed Sep 23, 2020
2 parents 089a2ab + f839a3f commit 4503095
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ FROM python:3.8-alpine

RUN pip install -U pip wheel setuptools typing-extensions

ARG install_arg="pymap"
ARG install_arg_opt="redis,admin,sieve,optional"
ARG install_arg="pymap[redis,admin,sieve,optional]"
ARG install_source=""
RUN apk --update add --virtual build-dependencies python3-dev build-base \
&& pip install "${install_arg}[${install_arg_opt}]" \
&& pip install "${install_arg}${install_source}" \
&& apk del build-dependencies

ENTRYPOINT ["pymap"]
4 changes: 2 additions & 2 deletions docker/hooks/build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
set -ex

export install_arg="$GITHUB_REPO/archive/$SOURCE_BRANCH.tar.gz"
docker build --build-arg install_arg -f $DOCKERFILE_PATH -t $IMAGE_NAME .
export install_source=" @ $GITHUB_REPO/archive/$SOURCE_BRANCH.tar.gz"
docker build --build-arg install_source -f $DOCKERFILE_PATH -t $IMAGE_NAME .
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
license = f.read()

setup(name='pymap',
version='0.20.1',
version='0.20.2',
author='Ian Good',
author_email='ian@icgood.net',
description='Lightweight, asynchronous IMAP serving in Python.',
Expand All @@ -49,12 +49,12 @@
include_package_data=True,
packages=find_packages(),
install_requires=[
'pysasl >= 0.6.1',
'proxy-protocol >= 0.5.0',
'pysasl >= 0.6.2',
'proxy-protocol >= 0.5.5',
'typing-extensions'],
extras_require={
'redis': ['aioredis >= 1.3.0', 'msgpack >= 1.0'],
'admin': ['pymap-admin == 0.4.2'],
'redis': ['aioredis >= 1.3.1', 'msgpack >= 1.0'],
'admin': ['pymap-admin == 0.4.3'],
'sieve': ['sievelib'],
'systemd': ['systemd-python'],
'optional': ['hiredis', 'passlib', 'pid']},
Expand Down

0 comments on commit 4503095

Please sign in to comment.