Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-poetry-core for openSUSE:Factory checked in at 2021-12-09 19:45:08 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-poetry-core (Old) and /work/SRC/openSUSE:Factory/.python-poetry-core.new.2520 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-poetry-core" Thu Dec 9 19:45:08 2021 rev:5 rq:935708 version:1.0.7 Changes: -------- --- /work/SRC/openSUSE:Factory/python-poetry-core/python-poetry-core.changes 2021-09-26 21:48:53.446792703 +0200 +++ /work/SRC/openSUSE:Factory/.python-poetry-core.new.2520/python-poetry-core.changes 2021-12-09 19:45:16.977123830 +0100 @@ -1,0 +2,9 @@ +Sat Dec 4 21:06:12 UTC 2021 - Ben Greiner <[email protected]> + +- Update to 1.0.7 + * Fixed an issue where the wrong git executable could be used on + Windows. (#213) + * Fixed an issue where the Python 3.10 classifier was not + automatically added. (#215) + +------------------------------------------------------------------- Old: ---- poetry-core-1.0.6-gh.tar.gz New: ---- poetry-core-1.0.7-gh.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-poetry-core.spec ++++++ --- /var/tmp/diff_new_pack.UNX1My/_old 2021-12-09 19:45:17.521124091 +0100 +++ /var/tmp/diff_new_pack.UNX1My/_new 2021-12-09 19:45:17.525124093 +0100 @@ -19,7 +19,7 @@ %define skip_python2 1 %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-poetry-core -Version: 1.0.6 +Version: 1.0.7 Release: 0 Summary: Python poetry core utilities License: MIT ++++++ poetry-core-1.0.6-gh.tar.gz -> poetry-core-1.0.7-gh.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/poetry-core-1.0.6/CHANGELOG.md new/poetry-core-1.0.7/CHANGELOG.md --- old/poetry-core-1.0.6/CHANGELOG.md 2021-09-21 21:32:29.000000000 +0200 +++ new/poetry-core-1.0.7/CHANGELOG.md 2021-10-04 18:56:23.000000000 +0200 @@ -1,5 +1,13 @@ # Change Log +## [1.0.7] - 2021-10-04 + +### Fixed + +- Fixed an issue where the wrong `git` executable could be used on Windows. ([#213](https://github.com/python-poetry/poetry-core/pull/213)) +- Fixed an issue where the Python 3.10 classifier was not automatically added. ([#215](https://github.com/python-poetry/poetry-core/pull/215)) + + ## [1.0.6] - 2021-09-21 ### Added @@ -171,7 +179,8 @@ - Fixed support for stub-only packages ([#28](https://github.com/python-poetry/core/pull/28)). -[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.0.6...1.1 +[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.0.7...1.0 +[1.0.7]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.7 [1.0.6]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.6 [1.0.5]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.5 [1.0.4]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.4 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/poetry-core-1.0.6/poetry/core/__init__.py new/poetry-core-1.0.7/poetry/core/__init__.py --- old/poetry-core-1.0.6/poetry/core/__init__.py 2021-09-21 21:32:29.000000000 +0200 +++ new/poetry-core-1.0.7/poetry/core/__init__.py 2021-10-04 18:56:23.000000000 +0200 @@ -7,7 +7,7 @@ # noinspection PyUnresolvedReferences from pathlib2 import Path -__version__ = "1.0.6" +__version__ = "1.0.7" __vendor_site__ = (Path(__file__).parent / "_vendor").as_posix() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/poetry-core-1.0.6/poetry/core/packages/package.py new/poetry-core-1.0.7/poetry/core/packages/package.py --- old/poetry-core-1.0.6/poetry/core/packages/package.py 2021-09-21 21:32:29.000000000 +0200 +++ new/poetry-core-1.0.7/poetry/core/packages/package.py 2021-10-04 18:56:23.000000000 +0200 @@ -47,6 +47,7 @@ "3.7", "3.8", "3.9", + "3.10", } def __init__( diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/poetry-core-1.0.6/poetry/core/vcs/__init__.py new/poetry-core-1.0.7/poetry/core/vcs/__init__.py --- old/poetry-core-1.0.6/poetry/core/vcs/__init__.py 2021-09-21 21:32:29.000000000 +0200 +++ new/poetry-core-1.0.7/poetry/core/vcs/__init__.py 2021-10-04 18:56:23.000000000 +0200 @@ -12,15 +12,17 @@ os.chdir(str(directory.resolve())) try: + from .git import executable + git_dir = decode( subprocess.check_output( - ["git", "rev-parse", "--show-toplevel"], stderr=subprocess.STDOUT + [executable(), "rev-parse", "--show-toplevel"], stderr=subprocess.STDOUT ) ).strip() vcs = Git(Path(git_dir)) - except (subprocess.CalledProcessError, OSError): + except (subprocess.CalledProcessError, OSError, RuntimeError): vcs = None finally: os.chdir(str(working_dir)) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/poetry-core-1.0.6/pyproject.toml new/poetry-core-1.0.7/pyproject.toml --- old/poetry-core-1.0.6/pyproject.toml 2021-09-21 21:32:29.000000000 +0200 +++ new/poetry-core-1.0.7/pyproject.toml 2021-10-04 18:56:23.000000000 +0200 @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-core" -version = "1.0.6" +version = "1.0.7" description = "Poetry PEP 517 Build Backend" authors = ["S??bastien Eustace <[email protected]>"] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/poetry-core-1.0.6/tests/masonry/builders/test_builder.py new/poetry-core-1.0.7/tests/masonry/builders/test_builder.py --- old/poetry-core-1.0.6/tests/masonry/builders/test_builder.py 2021-09-21 21:32:29.000000000 +0200 +++ new/poetry-core-1.0.7/tests/masonry/builders/test_builder.py 2021-10-04 18:56:23.000000000 +0200 @@ -89,6 +89,7 @@ assert classifiers == [ "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/poetry-core-1.0.6/tests/masonry/builders/test_complete.py new/poetry-core-1.0.7/tests/masonry/builders/test_complete.py --- old/poetry-core-1.0.6/tests/masonry/builders/test_complete.py 2021-09-21 21:32:29.000000000 +0200 +++ new/poetry-core-1.0.7/tests/masonry/builders/test_complete.py 2021-10-04 18:56:23.000000000 +0200 @@ -269,6 +269,7 @@ Requires-Python: >=3.6,<4.0 Classifier: License :: OSI Approved :: MIT License Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.10 Classifier: Programming Language :: Python :: 3.6 Classifier: Programming Language :: Python :: 3.7 Classifier: Programming Language :: Python :: 3.8 @@ -372,6 +373,7 @@ Requires-Python: >=3.6,<4.0 Classifier: License :: OSI Approved :: MIT License Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.10 Classifier: Programming Language :: Python :: 3.6 Classifier: Programming Language :: Python :: 3.7 Classifier: Programming Language :: Python :: 3.8 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/poetry-core-1.0.6/tests/masonry/test_api.py new/poetry-core-1.0.7/tests/masonry/test_api.py --- old/poetry-core-1.0.6/tests/masonry/test_api.py 2021-09-21 21:32:29.000000000 +0200 +++ new/poetry-core-1.0.7/tests/masonry/test_api.py 2021-10-04 18:56:23.000000000 +0200 @@ -162,6 +162,7 @@ Requires-Python: >=3.6,<4.0 Classifier: License :: OSI Approved :: MIT License Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.10 Classifier: Programming Language :: Python :: 3.6 Classifier: Programming Language :: Python :: 3.7 Classifier: Programming Language :: Python :: 3.8 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/poetry-core-1.0.6/tests/test_factory.py new/poetry-core-1.0.7/tests/test_factory.py --- old/poetry-core-1.0.6/tests/test_factory.py 2021-09-21 21:32:29.000000000 +0200 +++ new/poetry-core-1.0.7/tests/test_factory.py 2021-10-04 18:56:23.000000000 +0200 @@ -123,6 +123,7 @@ "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8",
