Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set version 0.20.2 #96

Merged
merged 1 commit into from
Sep 23, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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