Skip to content

Commit b18385a

Browse files
committed
Merge branch 'release/4.2.0' into master
2 parents e615b9c + 21f0658 commit b18385a

File tree

6 files changed

+13
-11
lines changed

6 files changed

+13
-11
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@ jobs:
5050
env: TOXENV=py38
5151
install: pip install tox
5252
script: tox
53+
- python: 3.9
54+
env: TOXENV=py39
55+
install: pip install tox
56+
script: tox
5357
- python: pypy
5458
env: TOXENV=pypy
5559
install: pip install tox

README.rst

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,7 @@
3838
.. image:: https://api.travis-ci.com/ets-labs/python-dependency-injector.svg?branch=master
3939
:target: https://travis-ci.com/github/ets-labs/python-dependency-injector
4040
:alt: Build Status
41-
42-
.. image:: https://readthedocs.org/projects/python-dependency-injector/badge/?version=latest
43-
:target: https://python-dependency-injector.ets-labs.org/
44-
:alt: Docs Status
45-
41+
4642
.. image:: https://coveralls.io/repos/github/ets-labs/python-dependency-injector/badge.svg?branch=master
4743
:target: https://coveralls.io/github/ets-labs/python-dependency-injector?branch=master
4844
:alt: Coverage Status
@@ -146,7 +142,7 @@ The package is available on the `PyPi`_::
146142
Documentation
147143
-------------
148144

149-
The documentation is available on the `Read The Docs <https://python-dependency-injector.ets-labs.org/>`_
145+
The documentation is available `here <https://python-dependency-injector.ets-labs.org/>`_
150146

151147
Examples
152148
--------

docs/index.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,6 @@ Dependency Injector --- Dependency injection framework for Python
5454
:target: https://travis-ci.com/github/ets-labs/python-dependency-injector
5555
:alt: Build Status
5656

57-
.. image:: https://readthedocs.org/projects/python-dependency-injector/badge/?version=latest
58-
:target: https://python-dependency-injector.ets-labs.org/
59-
:alt: Docs Status
60-
6157
.. image:: https://coveralls.io/repos/github/ets-labs/python-dependency-injector/badge.svg?branch=master
6258
:target: https://coveralls.io/github/ets-labs/python-dependency-injector?branch=master
6359
:alt: Coverage Status

docs/main/changelog.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ that were made in every particular version.
77
From version 0.7.6 *Dependency Injector* framework strictly
88
follows `Semantic versioning`_
99

10+
4.2.0
11+
-----
12+
- Add support of Python 3.9.
13+
- Update readme.
14+
1015
4.1.8
1116
-----
1217
- Update asyncio daemon, single- and multi-container examples to use ``Resource`` provider.

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@
9898
'Programming Language :: Python :: 3.6',
9999
'Programming Language :: Python :: 3.7',
100100
'Programming Language :: Python :: 3.8',
101+
'Programming Language :: Python :: 3.9',
101102
'Programming Language :: Python :: Implementation :: CPython',
102103
'Programming Language :: Python :: Implementation :: PyPy',
103104
'Framework :: AsyncIO',

src/dependency_injector/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Top-level package."""
22

3-
__version__ = '4.1.8'
3+
__version__ = '4.2.0'
44
"""Version number.
55
66
:type: str

0 commit comments

Comments
 (0)