Merge branch 'release/4.2.0' into master

This commit is contained in:
Roman Mogylatov 2020-10-29 15:48:22 -04:00
commit b18385a867
6 changed files with 13 additions and 11 deletions

View File

@ -50,6 +50,10 @@ jobs:
env: TOXENV=py38 env: TOXENV=py38
install: pip install tox install: pip install tox
script: tox script: tox
- python: 3.9
env: TOXENV=py39
install: pip install tox
script: tox
- python: pypy - python: pypy
env: TOXENV=pypy env: TOXENV=pypy
install: pip install tox install: pip install tox

View File

@ -38,11 +38,7 @@
.. image:: https://api.travis-ci.com/ets-labs/python-dependency-injector.svg?branch=master .. image:: https://api.travis-ci.com/ets-labs/python-dependency-injector.svg?branch=master
:target: https://travis-ci.com/github/ets-labs/python-dependency-injector :target: https://travis-ci.com/github/ets-labs/python-dependency-injector
:alt: Build Status :alt: Build Status
.. image:: https://readthedocs.org/projects/python-dependency-injector/badge/?version=latest
:target: https://python-dependency-injector.ets-labs.org/
:alt: Docs Status
.. image:: https://coveralls.io/repos/github/ets-labs/python-dependency-injector/badge.svg?branch=master .. image:: https://coveralls.io/repos/github/ets-labs/python-dependency-injector/badge.svg?branch=master
:target: https://coveralls.io/github/ets-labs/python-dependency-injector?branch=master :target: https://coveralls.io/github/ets-labs/python-dependency-injector?branch=master
:alt: Coverage Status :alt: Coverage Status
@ -146,7 +142,7 @@ The package is available on the `PyPi`_::
Documentation Documentation
------------- -------------
The documentation is available on the `Read The Docs <https://python-dependency-injector.ets-labs.org/>`_ The documentation is available `here <https://python-dependency-injector.ets-labs.org/>`_
Examples Examples
-------- --------

View File

@ -54,10 +54,6 @@ Dependency Injector --- Dependency injection framework for Python
:target: https://travis-ci.com/github/ets-labs/python-dependency-injector :target: https://travis-ci.com/github/ets-labs/python-dependency-injector
:alt: Build Status :alt: Build Status
.. image:: https://readthedocs.org/projects/python-dependency-injector/badge/?version=latest
:target: https://python-dependency-injector.ets-labs.org/
:alt: Docs Status
.. image:: https://coveralls.io/repos/github/ets-labs/python-dependency-injector/badge.svg?branch=master .. image:: https://coveralls.io/repos/github/ets-labs/python-dependency-injector/badge.svg?branch=master
:target: https://coveralls.io/github/ets-labs/python-dependency-injector?branch=master :target: https://coveralls.io/github/ets-labs/python-dependency-injector?branch=master
:alt: Coverage Status :alt: Coverage Status

View File

@ -7,6 +7,11 @@ that were made in every particular version.
From version 0.7.6 *Dependency Injector* framework strictly From version 0.7.6 *Dependency Injector* framework strictly
follows `Semantic versioning`_ follows `Semantic versioning`_
4.2.0
-----
- Add support of Python 3.9.
- Update readme.
4.1.8 4.1.8
----- -----
- Update asyncio daemon, single- and multi-container examples to use ``Resource`` provider. - Update asyncio daemon, single- and multi-container examples to use ``Resource`` provider.

View File

@ -98,6 +98,7 @@ setup(name='dependency-injector',
'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', 'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy', 'Programming Language :: Python :: Implementation :: PyPy',
'Framework :: AsyncIO', 'Framework :: AsyncIO',

View File

@ -1,6 +1,6 @@
"""Top-level package.""" """Top-level package."""
__version__ = '4.1.8' __version__ = '4.2.0'
"""Version number. """Version number.
:type: str :type: str