mirror of
https://github.com/sprockets/sprockets.mixins.mediatype.git
synced 2024-12-28 11:24:12 +00:00
3.0.3: Preparing for Python 3.9.
This commit is contained in:
parent
666624d2bf
commit
5755792959
5 changed files with 11 additions and 4 deletions
2
LICENSE
2
LICENSE
|
@ -1,4 +1,4 @@
|
|||
Copyright (c) 2015-2018 AWeber Communications
|
||||
Copyright (c) 2015-2020 AWeber Communications
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without modification,
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
Version History
|
||||
===============
|
||||
|
||||
`3.0.3`_ (14 Sep 2020)
|
||||
----------------------
|
||||
- Import from collections.abc instead of collections (thanks @nullsvm)
|
||||
|
||||
`3.0.2`_ (4 May 2020)
|
||||
---------------------
|
||||
- Do not log tracebacks when decoding the request body fails
|
||||
|
@ -75,7 +79,8 @@ Version History
|
|||
---------------------
|
||||
- Initial Release
|
||||
|
||||
.. _Next Release: https://github.com/sprockets/sprockets.mixins.mediatype/compare/3.0.2...HEAD
|
||||
.. _Next Release: https://github.com/sprockets/sprockets.mixins.mediatype/compare/3.0.3...HEAD
|
||||
.. _3.0.3: https://github.com/sprockets/sprockets.mixins.mediatype/compare/3.0.2...3.0.3
|
||||
.. _3.0.2: https://github.com/sprockets/sprockets.mixins.mediatype/compare/3.0.1...3.0.2
|
||||
.. _3.0.1: https://github.com/sprockets/sprockets.mixins.mediatype/compare/3.0.0...3.0.1
|
||||
.. _3.0.0: https://github.com/sprockets/sprockets.mixins.mediatype/compare/2.2.2...3.0.0
|
||||
|
|
2
setup.py
2
setup.py
|
@ -38,6 +38,8 @@ setuptools.setup(
|
|||
'Operating System :: OS Independent',
|
||||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.7',
|
||||
'Programming Language :: Python :: 3.8',
|
||||
'Programming Language :: Python :: 3.9',
|
||||
'Programming Language :: Python :: Implementation :: CPython',
|
||||
'Topic :: Software Development :: Libraries',
|
||||
'Topic :: Software Development :: Libraries :: Python Modules'
|
||||
|
|
|
@ -21,7 +21,7 @@ except ImportError as error: # noqa: F841 # pragma no cover
|
|||
set_default_content_type = _error_closure
|
||||
|
||||
|
||||
version_info = (3, 0, 2)
|
||||
version_info = (3, 0, 3)
|
||||
__version__ = '.'.join(str(x) for x in version_info)
|
||||
|
||||
__all__ = ['ContentMixin', 'ContentSettings', 'add_binary_content_type',
|
||||
|
|
2
tox.ini
2
tox.ini
|
@ -1,5 +1,5 @@
|
|||
[tox]
|
||||
envlist = py37
|
||||
envlist = py37,py38,py39
|
||||
indexserver =
|
||||
default = https://pypi.python.org/simple
|
||||
toxworkdir = build/tox
|
||||
|
|
Loading…
Reference in a new issue