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.28.0 #137

Merged
merged 1 commit into from
Nov 6, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
- name: Install build tools
run: |
python -m pip install --upgrade pip setuptools wheel invoke
- name: Build the Sphinx documentation
Expand Down
5 changes: 3 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
-r requirements-all.txt

invoke
mypy
flake8
Expand All @@ -9,10 +11,9 @@ pytest-asyncio
pytest-cov
rope

# stubs
types-certifi
types-protobuf
types-redis
types-setuptools
types-toml

-r requirements-all.txt
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.28.0.rc4',
version='0.28.0',
author='Ian Good',
author_email='ian@icgood.net',
description='Lightweight, asynchronous IMAP serving in Python.',
Expand All @@ -44,16 +44,16 @@
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.10'],
'Programming Language :: Python :: 3.11'],
python_requires='~=3.11',
include_package_data=True,
packages=find_packages(include=('pymap', 'pymap.*')),
install_requires=[
'pysasl == 1.0.0.rc8',
'pysasl ~= 1.0',
'proxy-protocol ~= 0.9.0'],
extras_require={
'admin': ['pymap-admin ~= 0.9.0.rc1',
'protobuf ~= 3.20',
'admin': ['pymap-admin ~= 0.9.0',
'protobuf',
'googleapis-common-protos'],
'macaroon': ['pymacaroons'],
'redis': ['redis ~= 4.2', 'msgpack ~= 1.0'],
Expand Down