mirror of
https://github.com/jazzband/django-analytical.git
synced 2026-03-16 22:20:25 +00:00
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:
parent
a8be4ea814
commit
ce90933ab1
3 changed files with 11 additions and 4 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
1
setup.py
1
setup.py
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Reference in a new issue