mirror of
				https://github.com/ets-labs/python-dependency-injector.git
				synced 2025-11-04 01:47:36 +03:00 
			
		
		
		
	Merge branch 'release/4.2.0' into master
This commit is contained in:
		
						commit
						b18385a867
					
				| 
						 | 
				
			
			@ -50,6 +50,10 @@ jobs:
 | 
			
		|||
    env: TOXENV=py38
 | 
			
		||||
    install: pip install tox
 | 
			
		||||
    script: tox
 | 
			
		||||
  - python: 3.9
 | 
			
		||||
    env: TOXENV=py39
 | 
			
		||||
    install: pip install tox
 | 
			
		||||
    script: tox
 | 
			
		||||
  - python: pypy
 | 
			
		||||
    env: TOXENV=pypy
 | 
			
		||||
    install: pip install tox
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -39,10 +39,6 @@
 | 
			
		|||
   :target: https://travis-ci.com/github/ets-labs/python-dependency-injector
 | 
			
		||||
   :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
 | 
			
		||||
   :target: https://coveralls.io/github/ets-labs/python-dependency-injector?branch=master
 | 
			
		||||
   :alt: Coverage Status
 | 
			
		||||
| 
						 | 
				
			
			@ -146,7 +142,7 @@ The package is available on the `PyPi`_::
 | 
			
		|||
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
 | 
			
		||||
--------
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -54,10 +54,6 @@ Dependency Injector --- Dependency injection framework for Python
 | 
			
		|||
   :target: https://travis-ci.com/github/ets-labs/python-dependency-injector
 | 
			
		||||
   :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
 | 
			
		||||
   :target: https://coveralls.io/github/ets-labs/python-dependency-injector?branch=master
 | 
			
		||||
   :alt: Coverage Status
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -7,6 +7,11 @@ that were made in every particular version.
 | 
			
		|||
From version 0.7.6 *Dependency Injector* framework strictly 
 | 
			
		||||
follows `Semantic versioning`_
 | 
			
		||||
 | 
			
		||||
4.2.0
 | 
			
		||||
-----
 | 
			
		||||
- Add support of Python 3.9.
 | 
			
		||||
- Update readme.
 | 
			
		||||
 | 
			
		||||
4.1.8
 | 
			
		||||
-----
 | 
			
		||||
- Update asyncio daemon, single- and multi-container examples to use ``Resource`` provider.
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										1
									
								
								setup.py
									
									
									
									
									
								
							
							
						
						
									
										1
									
								
								setup.py
									
									
									
									
									
								
							| 
						 | 
				
			
			@ -98,6 +98,7 @@ setup(name='dependency-injector',
 | 
			
		|||
          'Programming Language :: Python :: 3.6',
 | 
			
		||||
          'Programming Language :: Python :: 3.7',
 | 
			
		||||
          'Programming Language :: Python :: 3.8',
 | 
			
		||||
          'Programming Language :: Python :: 3.9',
 | 
			
		||||
          'Programming Language :: Python :: Implementation :: CPython',
 | 
			
		||||
          'Programming Language :: Python :: Implementation :: PyPy',
 | 
			
		||||
          'Framework :: AsyncIO',
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,6 +1,6 @@
 | 
			
		|||
"""Top-level package."""
 | 
			
		||||
 | 
			
		||||
__version__ = '4.1.8'
 | 
			
		||||
__version__ = '4.2.0'
 | 
			
		||||
"""Version number.
 | 
			
		||||
 | 
			
		||||
:type: str
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue
	
	Block a user