mirror of
				https://github.com/enpaul/tox-poetry-installer.git
				synced 2025-11-03 07:39:20 +00:00 
			
		
		
		
	Merge pull request #75 from enpaul/enp/bugfix
Fix poetry dependency spec to <1.2 for last 0.8 release
This commit is contained in:
		@@ -2,6 +2,14 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
See also: [Github Release Page](https://github.com/enpaul/tox-poetry-installer/releases).
 | 
					See also: [Github Release Page](https://github.com/enpaul/tox-poetry-installer/releases).
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					## Version 0.8.5
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					View this release on:
 | 
				
			||||||
 | 
					[Github](https://github.com/enpaul/tox-poetry-installer/releases/tag/0.8.5),
 | 
				
			||||||
 | 
					[PyPI](https://pypi.org/project/tox-poetry-installer/0.8.5/)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					- Fix Poetry version specification supporting the incompatible Poetry-1.2.0 release
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## Version 0.8.4
 | 
					## Version 0.8.4
 | 
				
			||||||
 | 
					
 | 
				
			||||||
View this release on:
 | 
					View this release on:
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										710
									
								
								poetry.lock
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										710
									
								
								poetry.lock
									
									
									
										generated
									
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							@@ -1,6 +1,6 @@
 | 
				
			|||||||
[tool.poetry]
 | 
					[tool.poetry]
 | 
				
			||||||
name = "tox-poetry-installer"
 | 
					name = "tox-poetry-installer"
 | 
				
			||||||
version = "0.8.4"
 | 
					version = "0.8.5"
 | 
				
			||||||
license = "MIT"
 | 
					license = "MIT"
 | 
				
			||||||
authors = ["Ethan Paul <24588726+enpaul@users.noreply.github.com>"]
 | 
					authors = ["Ethan Paul <24588726+enpaul@users.noreply.github.com>"]
 | 
				
			||||||
description = "A plugin for Tox that lets you install test environment dependencies from the Poetry lockfile"
 | 
					description = "A plugin for Tox that lets you install test environment dependencies from the Poetry lockfile"
 | 
				
			||||||
@@ -39,21 +39,21 @@ poetry = ["poetry"]
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
[tool.poetry.dependencies]
 | 
					[tool.poetry.dependencies]
 | 
				
			||||||
python = "^3.6.1"
 | 
					python = "^3.6.1"
 | 
				
			||||||
poetry = {version = "^1.0.0", optional = true}
 | 
					poetry = {version = ">=1.0.0,<1.2", optional = true}
 | 
				
			||||||
poetry-core = "^1.0.0"
 | 
					poetry-core = "^1.0.0"
 | 
				
			||||||
tox = "^3.8.0"
 | 
					tox = "^3.8.0"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[tool.poetry.dev-dependencies]
 | 
					[tool.poetry.dev-dependencies]
 | 
				
			||||||
bandit = "^1.6.2"
 | 
					bandit = "^1.6.2"
 | 
				
			||||||
black = { version = "^21.12b0", allow-prereleases = true, python = "^3.7" }
 | 
					black = { version = "^21.12b0", allow-prereleases = true, python = "^3.7" }
 | 
				
			||||||
blacken-docs = "^1.8.0"
 | 
					blacken-docs = { version = "^1.8.0", python = "^3.7" }
 | 
				
			||||||
ipython = { version = "^7.18.1", python = "^3.7" }
 | 
					ipython = { version = "^7.18.1", python = "^3.7" }
 | 
				
			||||||
mdformat = "^0.6"
 | 
					mdformat = "^0.6"
 | 
				
			||||||
mdformat-gfm = "^0.2"
 | 
					mdformat-gfm = "^0.2"
 | 
				
			||||||
mypy = "^0.930"
 | 
					mypy = "^0.930"
 | 
				
			||||||
pre-commit = "^2.7.1"
 | 
					pre-commit = "^2.7.1"
 | 
				
			||||||
pre-commit-hooks = "^3.3.0"
 | 
					pre-commit-hooks = "^3.3.0"
 | 
				
			||||||
pylint = "^2.4.4"
 | 
					pylint = { version = "^2.13.0", python = "^3.7" }
 | 
				
			||||||
pytest = "^6.0.2"
 | 
					pytest = "^6.0.2"
 | 
				
			||||||
pytest-cov = "^2.10.1"
 | 
					pytest-cov = "^2.10.1"
 | 
				
			||||||
reorder-python-imports = "^2.3.5"
 | 
					reorder-python-imports = "^2.3.5"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,7 +1,7 @@
 | 
				
			|||||||
# pylint: disable=missing-docstring
 | 
					# pylint: disable=missing-docstring
 | 
				
			||||||
__title__ = "tox-poetry-installer"
 | 
					__title__ = "tox-poetry-installer"
 | 
				
			||||||
__summary__ = "A plugin for Tox that lets you install test environment dependencies from the Poetry lockfile"
 | 
					__summary__ = "A plugin for Tox that lets you install test environment dependencies from the Poetry lockfile"
 | 
				
			||||||
__version__ = "0.8.4"
 | 
					__version__ = "0.8.5"
 | 
				
			||||||
__url__ = "https://github.com/enpaul/tox-poetry-installer/"
 | 
					__url__ = "https://github.com/enpaul/tox-poetry-installer/"
 | 
				
			||||||
__license__ = "MIT"
 | 
					__license__ = "MIT"
 | 
				
			||||||
__authors__ = ["Ethan Paul <24588726+enpaul@users.noreply.github.com>"]
 | 
					__authors__ = ["Ethan Paul <24588726+enpaul@users.noreply.github.com>"]
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user