14
0

Accepting request 922887 from home:bnavigator:branches:devel:languages:python

- Update to 6.3.3
  * only put minimal setuptools version into toml extra to warn
    people with old strict pins
- Release 6.3.2
  * fix #629: correctly convert Version data in tags_to_version
    parser to avoid errors
- Release 6.3.1
  * fix #625: restore tomli in install_requires after the
    regression changes in took it out and some users never added
    it even tho they have pyproject.toml files
- Release 6.3.0
  * Warning
    This release explicitly warns on unsupported setuptools. This
    unfortunately has to happen as the legacy setup_requires
    mechanism incorrectly configures the setuptools working-set
    when a more recent setuptools version than available is
    required.
    As all releases of setuptools are affected as the historic
    mechanism for ensuring a working setuptools setup was shipping
    a ez_setup file next to setup.py, which would install the
    required version of setuptools.
    This mechanism has long since been deprecated and removed as
    most people haven't been using it
  * fix #612: depend on packaging to ensure version parsing parts
  * fix #611: correct the typo that hid away the toml extra and
    add it in setup.py as well
  * fix #615: restore support for the git_archive plugin which
    doesn't pass over the config
  * restore the ability to run on old setuptools while to avoid
    breaking pipelines

OBS-URL: https://build.opensuse.org/request/show/922887
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-setuptools_scm?expand=0&rev=64
This commit is contained in:
2021-10-03 20:39:30 +00:00
committed by Git OBS Bridge
parent 1925d5a039
commit f85cd8e028
5 changed files with 119 additions and 55 deletions

View File

@@ -1,5 +1,5 @@
#
# spec file for package python-setuptools_scm
# spec file
#
# Copyright (c) 2021 SUSE LLC
#
@@ -16,7 +16,7 @@
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%{?!python_module:%define python_module() python3-%{**}}
%global flavor @BUILD_FLAVOR@%{nil}
%if "%{flavor}" == "test"
%define psuffix -test
@@ -25,27 +25,29 @@
%define psuffix %{nil}
%bcond_with test
%endif
%define skip_python2 1
Name: python-setuptools_scm%{psuffix}
Version: 4.1.2
Version: 6.3.2
Release: 0
Summary: Python setuptools handler for SCM tags
License: MIT
URL: https://github.com/pypa/setuptools_scm
Source: https://files.pythonhosted.org/packages/source/s/setuptools_scm/setuptools_scm-%{version}.tar.gz
Patch0: add-rpmfail-pytest-markers.patch
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module packaging >= 20.0}
BuildRequires: %{python_module setuptools >= 45}
BuildRequires: %{python_module tomli >= 1.0}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-packaging >= 20.0
Requires: python-setuptools
Suggests: python-toml
Requires: python-tomli
BuildArch: noarch
%if %{with test}
# Testing requirements
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools >= 42}
BuildRequires: %{python_module setuptools_scm = %{version}}
BuildRequires: %{python_module toml}
BuildRequires: %{python_module virtualenv}
BuildRequires: git-core
BuildRequires: mercurial
%endif
@@ -61,7 +63,6 @@ in SCM metadata. It also handles file finders for the supperted SCMs.
%prep
%setup -q -n setuptools_scm-%{version}
%autopatch -p1
sed -i 's/yield_fixture/fixture/' testing/conftest.py
%build
%python_build
@@ -74,16 +75,16 @@ sed -i 's/yield_fixture/fixture/' testing/conftest.py
%if %{with test}
%check
# both tests in test_integration.py encounter https://github.com/pypa/setuptools_scm/issues/386 (at least on Python 2)
# ignore unraisable exceptions (basically https://github.com/pypa/setuptools_scm/commit/cf54011725bb5e6ac9911b06e23ffc5c2938a53f)
%pytest -p no:unraisableexception -k 'not test_integration'
# pip download needs network
%pytest -k "not test_pip_download"
%endif
%if !%{with test}
%files %{python_files}
%license LICENSE
%doc README.rst CHANGELOG.rst
%{python_sitelib}/setuptools_scm*
%{python_sitelib}/setuptools_scm
%{python_sitelib}/setuptools_scm-%{version}*-info
%endif
%changelog