forked from pool/python-hatch_vcs
Compare commits
3 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| a29a2601ea | |||
| 8e2815855e | |||
| 49efa8bf55 |
3
.gitattributes
vendored
3
.gitattributes
vendored
@@ -1,4 +1,4 @@
|
||||
## Default LFS
|
||||
*.changes merge=merge-changes
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
@@ -12,6 +12,7 @@
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tar filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
|
||||
5
.gitignore
vendored
5
.gitignore
vendored
@@ -1 +1,4 @@
|
||||
.osc
|
||||
*.obscpio
|
||||
*.osc
|
||||
_build.*
|
||||
.pbuild
|
||||
|
||||
BIN
hatch_vcs-0.4.0.tar.gz
LFS
BIN
hatch_vcs-0.4.0.tar.gz
LFS
Binary file not shown.
BIN
hatch_vcs-0.5.0.tar.gz
LFS
Normal file
BIN
hatch_vcs-0.5.0.tar.gz
LFS
Normal file
Binary file not shown.
@@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 4 10:54:15 UTC 2026 - Daniel Garcia <daniel.garcia@suse.com>
|
||||
|
||||
- Add pythons_for_pypi macro. This macro will help to build the python
|
||||
minimal stack for different python versions.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 29 06:00:44 UTC 2025 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
|
||||
|
||||
- update to 0.5.0:
|
||||
* Changed:
|
||||
- Drop support for Python 3.8
|
||||
* Added:
|
||||
- Officially support Python 3.13
|
||||
- Avoid a deprecation warning emitted by a dependency when using
|
||||
the tag-pattern option
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 6 06:33:44 UTC 2023 - Johannes Kastl <kastl@b1-systems.de>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file
|
||||
# spec file for package python-hatch_vcs
|
||||
#
|
||||
# Copyright (c) 2023 SUSE LLC
|
||||
# Copyright (c) 2026 SUSE LLC and contributors
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -24,9 +24,10 @@
|
||||
%define psuffix %{nil}
|
||||
%bcond_with test
|
||||
%endif
|
||||
%{?pythons_for_pypi}
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-hatch_vcs%{psuffix}
|
||||
Version: 0.4.0
|
||||
Version: 0.5.0
|
||||
Release: 0
|
||||
Summary: Hatch plugin for versioning with your preferred VCS
|
||||
License: MIT
|
||||
@@ -34,23 +35,23 @@ URL: https://github.com/ofek/hatch-vcs
|
||||
Source: https://files.pythonhosted.org/packages/source/h/hatch_vcs/hatch_vcs-%{version}.tar.gz
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros >= 20210929
|
||||
# https://github.com/ofek/hatch-vcs/issues/8
|
||||
Requires: (python-setuptools_scm >= 6.4.0)
|
||||
Requires: python-hatchling >= 0.21.0
|
||||
Provides: python-hatch-vcs = %{version}-%{release}
|
||||
BuildArch: noarch
|
||||
# SECTION build
|
||||
BuildRequires: %{python_module hatchling >= 0.21.0}
|
||||
BuildRequires: %{python_module base >= 3.9}
|
||||
BuildRequires: %{python_module hatchling >= 1.1.0}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module setuptools_scm >= 8.2.0}
|
||||
# /SECTION
|
||||
%if %{with test}
|
||||
# SECTION test
|
||||
BuildRequires: %{python_module hatch_vcs = %{version}}
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: %{python_module setuptools_scm >= 6.4.0}
|
||||
BuildRequires: git
|
||||
# /SECTION
|
||||
%endif
|
||||
Requires: python-hatchling >= 1.1.0
|
||||
Requires: python-setuptools_scm >= 8.2.0
|
||||
Provides: python-hatch-vcs = %{version}-%{release}
|
||||
BuildArch: noarch
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
|
||||
Reference in New Issue
Block a user