forked from pool/python-findpython
Compare commits
8 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| ff6857b97c | |||
| 0453c33261 | |||
| f33e9771d4 | |||
| d9d285a07f | |||
| 67ab9aa537 | |||
| 323c1fa3f3 | |||
| 9ae3a974d4 | |||
| ad25d91f83 |
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:56e52b409a92bcbd495cf981c85acf137f3b3e51cc769b46eba219bb1ab7533c
|
|
||||||
size 17797
|
|
||||||
3
findpython-0.7.1.tar.gz
Normal file
3
findpython-0.7.1.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:9f29e6a3dabdb75f2b39c949772c0ed26eab15308006669f3478cdab0d867c78
|
||||||
|
size 18867
|
||||||
@@ -1,3 +1,35 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Dec 9 10:34:06 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||||
|
|
||||||
|
- Update to 0.7.1
|
||||||
|
* Make test_find_python_from_uv_provider working on SunOS
|
||||||
|
- Skip test failing in Factory by design
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Aug 16 10:19:41 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to 0.7.0
|
||||||
|
* Add an option to show the python path only
|
||||||
|
* Separate free-threaded python from normal ones
|
||||||
|
* Add support for uv installed python
|
||||||
|
* Correct the uv python dir with platformdirs
|
||||||
|
* Return the original python executable if resolve_symlink=True
|
||||||
|
- Update BuildRequires and Requires from pyproject.toml
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 2 17:39:06 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to 0.6.3
|
||||||
|
* Refresh lockfile and fix deprecation warnings
|
||||||
|
* Prefer 64bit Python interpreters
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 22 16:04:03 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 0.6.2:
|
||||||
|
* Don't skip symlinks for rye provider
|
||||||
|
* **ci**: Macos for old python versions
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Apr 20 14:05:16 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
Sat Apr 20 14:05:16 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-findpython
|
# spec file for package python-findpython
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC and contributors
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-findpython
|
Name: python-findpython
|
||||||
Version: 0.6.1
|
Version: 0.7.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Utility to find python versions on your system
|
Summary: Utility to find python versions on your system
|
||||||
License: MIT
|
License: MIT
|
||||||
@@ -28,6 +28,7 @@ BuildRequires: %{python_module base >= 3.7}
|
|||||||
BuildRequires: %{python_module packaging >= 20}
|
BuildRequires: %{python_module packaging >= 20}
|
||||||
BuildRequires: %{python_module pdm-backend}
|
BuildRequires: %{python_module pdm-backend}
|
||||||
BuildRequires: %{python_module pip}
|
BuildRequires: %{python_module pip}
|
||||||
|
BuildRequires: %{python_module platformdirs >= 4.3.6}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: git
|
BuildRequires: git
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
@@ -35,6 +36,7 @@ BuildArch: noarch
|
|||||||
# SECTION test requirements
|
# SECTION test requirements
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
# /SECTION
|
# /SECTION
|
||||||
|
Requires: python-platformdirs >= 4.3.6
|
||||||
Requires(post): update-alternatives
|
Requires(post): update-alternatives
|
||||||
Requires(postun): update-alternatives
|
Requires(postun): update-alternatives
|
||||||
Requires: python-packaging >= 20
|
Requires: python-packaging >= 20
|
||||||
@@ -56,7 +58,8 @@ system.
|
|||||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%pytest
|
# test_find_python_from_uv_provider needs python3 providing python 3.10, which is not possible in Factory
|
||||||
|
%pytest -k "not test_find_python_from_uv_provider"
|
||||||
|
|
||||||
%post
|
%post
|
||||||
%python_install_alternative findpython
|
%python_install_alternative findpython
|
||||||
|
|||||||
Reference in New Issue
Block a user