Release v3.1.0

Removed optional license field from metadata, following recommendations from packaging guide.
See https://packaging.python.org/en/latest/guides/distributing-packages-using-setuptools/#license
This commit is contained in:
Peter Bittner 2022-03-15 00:27:34 +01:00
parent a8be4ea814
commit ce90933ab1
3 changed files with 11 additions and 4 deletions

View file

@ -1,3 +1,12 @@
Version 3.1.0
-------------
* Rename default branch from master to main (Peter Bittner, Jannis Leidel)
* Modernize packaging setup, add pyproject.toml (Peter Bittner)
* Integrate isort, reorganize imports (David Smith)
* Refactor test suite from Python unit tests to Pytest (David Smith)
* Add Heap integration (Garrett Coakley)
* Drop Django 3.1, cover Django 4.0 and Python 3.10 in test suite (David Smith)
Version 3.0.0
-------------
* Add support for Lucky Orange (Peter Bittner)

View file

@ -4,6 +4,5 @@ Analytics service integration for Django projects
__author__ = "Joost Cassee"
__email__ = "joost@cassee.net"
__version__ = "3.0.0"
__copyright__ = "Copyright (C) 2011-2020 Joost Cassee and contributors"
__license__ = "MIT"
__version__ = "3.1.0"
__copyright__ = "Copyright (C) 2011-2022 Joost Cassee and contributors"

View file

@ -19,7 +19,6 @@ def read_file(filename):
setup(
name='django-analytical',
version=package.__version__,
license=package.__license__,
description=package.__doc__.strip(),
long_description=read_file('README.rst'),
long_description_content_type='text/x-rst',