pypi: Add support for Python 3.8.

This commit is contained in:
Eeshan Garg 2020-03-25 23:24:35 -02:30 committed by Tim Abbott
parent 2cf49788fd
commit 0b930cfe86
4 changed files with 4 additions and 0 deletions

View file

@ -4,6 +4,7 @@ python:
- "3.5" - "3.5"
- "3.6" - "3.6"
- "3.7" - "3.7"
- "3.8"
env: TEST_SUITE=test-main env: TEST_SUITE=test-main
matrix: matrix:
include: include:

View file

@ -45,6 +45,7 @@ package_info = dict(
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
], ],
python_requires='>=2.7,!=3.0.x,!=3.1.x,!=3.2.x,!=3.3.x,!=3.4.x', python_requires='>=2.7,!=3.0.x,!=3.1.x,!=3.2.x,!=3.3.x,!=3.4.x',
url='https://www.zulip.org/', url='https://www.zulip.org/',

1
zulip_bots/setup.py Normal file → Executable file
View file

@ -42,6 +42,7 @@ package_info = dict(
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
], ],
python_requires='>=3.5', python_requires='>=3.5',
url='https://www.zulip.org/', url='https://www.zulip.org/',

1
zulip_botserver/setup.py Normal file → Executable file
View file

@ -26,6 +26,7 @@ package_info = dict(
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
], ],
python_requires='>=3.5', python_requires='>=3.5',
url='https://www.zulip.org/', url='https://www.zulip.org/',