Release 3.1

This commit is contained in:
Emanuel Schütze 2019-12-13 09:39:11 +01:00
parent e45d3aa360
commit 32dfba0d5c
3 changed files with 5 additions and 4 deletions

View File

@ -4,7 +4,7 @@
https://openslides.com https://openslides.com
Version 3.1 (2019-XX-XX) Version 3.1 (2019-12-13)
======================== ========================
`Milestone <https://github.com/OpenSlides/OpenSlides/milestones/3.0>`_ `Milestone <https://github.com/OpenSlides/OpenSlides/milestones/3.0>`_

View File

@ -1,6 +1,6 @@
__author__ = "OpenSlides Team <support@openslides.org>" __author__ = "OpenSlides Team <support@openslides.org>"
__description__ = "Presentation and assembly system" __description__ = "Presentation and assembly system"
__version__ = "3.0.1-dev" __version__ = "3.1"
__license__ = "MIT" __license__ = "MIT"
__url__ = "https://openslides.com" __url__ = "https://openslides.com"

View File

@ -29,14 +29,15 @@ setup(
classifiers=[ classifiers=[
# http://pypi.python.org/pypi?%3Aaction=list_classifiers # http://pypi.python.org/pypi?%3Aaction=list_classifiers
# 'Development Status :: 3 - Alpha', # 'Development Status :: 3 - Alpha',
"Development Status :: 4 - Beta", # "Development Status :: 4 - Beta",
# 'Development Status :: 5 - Production/Stable', 'Development Status :: 5 - Production/Stable',
"Environment :: Web Environment", "Environment :: Web Environment",
"Framework :: Django", "Framework :: Django",
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
"Operating System :: OS Independent", "Operating System :: OS Independent",
"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",
], ],
packages=find_packages(exclude=["tests", "tests.*"]), packages=find_packages(exclude=["tests", "tests.*"]),
include_package_data=True, include_package_data=True,