Hello community, here is the log from the commit of package python-hatch for openSUSE:Leap:15.2 checked in at 2020-04-14 14:21:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Leap:15.2/python-hatch (Old) and /work/SRC/openSUSE:Leap:15.2/.python-hatch.new.3248 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-hatch" Tue Apr 14 14:21:18 2020 rev:2 rq:793555 version:0.23.0 Changes: -------- --- /work/SRC/openSUSE:Leap:15.2/python-hatch/python-hatch.changes 2020-03-27 16:48:02.303930301 +0100 +++ /work/SRC/openSUSE:Leap:15.2/.python-hatch.new.3248/python-hatch.changes 2020-04-14 14:21:36.425302521 +0200 @@ -1,0 +2,11 @@ +Sun Apr 5 07:19:23 UTC 2020 - Tomáš Chvátal <[email protected]> + +- Skip flaky test + +------------------------------------------------------------------- +Wed Dec 11 12:00:14 UTC 2019 - Tomáš Chvátal <[email protected]> + +- Update to 0.23.0: + * fixes wheel packaging a bit + +------------------------------------------------------------------- Old: ---- hatch-0.22.0.tar.gz New: ---- hatch-0.23.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-hatch.spec ++++++ --- /var/tmp/diff_new_pack.yhkBrj/_old 2020-04-14 14:21:36.733302751 +0200 +++ /var/tmp/diff_new_pack.yhkBrj/_new 2020-04-14 14:21:36.737302754 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-hatch # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,11 +19,10 @@ %define skip_python2 1 %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-hatch -Version: 0.22.0 +Version: 0.23.0 Release: 0 Summary: A modern project, package, and virtual env manager License: MIT OR Apache-2.0 -Group: Development/Languages/Python URL: https://github.com/ofek/hatch Source: https://files.pythonhosted.org/packages/source/h/hatch/hatch-%{version}.tar.gz BuildRequires: %{python_module appdirs} @@ -39,9 +38,9 @@ BuildRequires: %{python_module semver >= 2.7.8} BuildRequires: %{python_module setuptools >= 36.0.0} BuildRequires: %{python_module sortedcontainers >= 1.5.7} -BuildRequires: %{python_module toml} +BuildRequires: %{python_module toml >= 0.9.3} BuildRequires: %{python_module twine >= 1.9.1} -BuildRequires: %{python_module userpath >= 1.1.0} +BuildRequires: %{python_module userpath >= 1.3.0} BuildRequires: %{python_module virtualenv} BuildRequires: %{python_module wheel >= 0.27.0} BuildRequires: dos2unix @@ -60,8 +59,9 @@ Requires: python-semver >= 2.7.8 Requires: python-setuptools >= 36.0.0 Requires: python-sortedcontainers +Requires: python-toml >= 0.9.3 Requires: python-twine >= 1.9.1 -Requires: python-userpath >= 1.1.0 +Requires: python-userpath >= 1.3.0 Requires: python-virtualenv Requires: python-wheel >= 0.27.0 BuildArch: noarch @@ -85,7 +85,8 @@ %check export LANG=en_US.UTF-8 export PATH=$PATH:%{buildroot}%{_bindir} -%pytest +# test_list_success_1 randomly timeouts in OBS +%pytest -k 'not test_list_success_1' %files %{python_files} %doc README.rst ++++++ hatch-0.22.0.tar.gz -> hatch-0.23.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hatch-0.22.0/PKG-INFO new/hatch-0.23.0/PKG-INFO --- old/hatch-0.22.0/PKG-INFO 2019-10-21 02:29:56.000000000 +0200 +++ new/hatch-0.23.0/PKG-INFO 2019-10-21 18:40:52.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.2 Name: hatch -Version: 0.22.0 +Version: 0.23.0 Summary: A modern project, package, and virtual env manager Home-page: https://github.com/ofek/hatch Author: Ofek Lev @@ -274,6 +274,11 @@ master ^^^^^^ + 0.23.0 + ^^^^^^ + + - Fixed wheel packaging + 0.22.0 ^^^^^^ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hatch-0.22.0/README.rst new/hatch-0.23.0/README.rst --- old/hatch-0.22.0/README.rst 2019-10-21 02:27:14.000000000 +0200 +++ new/hatch-0.23.0/README.rst 2019-10-21 18:39:56.000000000 +0200 @@ -264,6 +264,11 @@ master ^^^^^^ +0.23.0 +^^^^^^ + +- Fixed wheel packaging + 0.22.0 ^^^^^^ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hatch-0.22.0/hatch/__init__.py new/hatch-0.23.0/hatch/__init__.py --- old/hatch-0.22.0/hatch/__init__.py 2019-10-21 02:28:23.000000000 +0200 +++ new/hatch-0.23.0/hatch/__init__.py 2019-10-21 18:40:42.000000000 +0200 @@ -1 +1 @@ -__version__ = '0.22.0' +__version__ = '0.23.0' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hatch-0.22.0/hatch/files/setup.py new/hatch-0.23.0/hatch/files/setup.py --- old/hatch-0.22.0/hatch/files/setup.py 2019-05-25 21:24:42.000000000 +0200 +++ new/hatch-0.23.0/hatch/files/setup.py 2019-10-21 17:47:05.000000000 +0200 @@ -43,7 +43,7 @@ 'Programming Language :: Python :: Implementation :: CPython',{pypy} ], 'install_requires': REQUIRES, 'tests_require': ['coverage', 'pytest'], - 'packages': find_packages(),{entry_point} + 'packages': find_packages(exclude=('tests', 'tests.*')),{entry_point} }} #################### BEGIN USER OVERRIDES #################### diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hatch-0.22.0/hatch.egg-info/PKG-INFO new/hatch-0.23.0/hatch.egg-info/PKG-INFO --- old/hatch-0.22.0/hatch.egg-info/PKG-INFO 2019-10-21 02:29:56.000000000 +0200 +++ new/hatch-0.23.0/hatch.egg-info/PKG-INFO 2019-10-21 18:40:51.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.2 Name: hatch -Version: 0.22.0 +Version: 0.23.0 Summary: A modern project, package, and virtual env manager Home-page: https://github.com/ofek/hatch Author: Ofek Lev @@ -274,6 +274,11 @@ master ^^^^^^ + 0.23.0 + ^^^^^^ + + - Fixed wheel packaging + 0.22.0 ^^^^^^ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hatch-0.22.0/setup.py new/hatch-0.23.0/setup.py --- old/hatch-0.22.0/setup.py 2019-10-21 01:08:47.000000000 +0200 +++ new/hatch-0.23.0/setup.py 2019-10-21 18:23:41.000000000 +0200 @@ -1,4 +1,4 @@ -from setuptools import setup +from setuptools import find_packages, setup with open('hatch/__init__.py', 'r') as f: for line in f: @@ -72,7 +72,7 @@ 'wheel>=0.27.0', ), - packages=['hatch'], + packages=find_packages(include=['hatch', 'hatch.*']), entry_points={ 'console_scripts': ( 'hatch = hatch.cli:hatch',
