Skip to content

Commit

Permalink
Merge pull request #137 from icgood/v028
Browse files Browse the repository at this point in the history
Set version 0.28.0
  • Loading branch information
icgood committed Nov 6, 2022
2 parents 8eb6dca + b2d3dfd commit 9aa05ba
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
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

0 comments on commit 9aa05ba

Please sign in to comment.