4 Commits

Author SHA256 Message Date
790d592c63 Accepting request 1294896 from devel:languages:python
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/1294896
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip-api?expand=0&rev=12
2025-07-22 10:20:25 +00:00
2ee008fedc - update to 0.0.34:
* meta: drop support for Python 3.7
- update to 0.0.33:
  * fix release workflow, corrective release
- update to 0.0.32:
  * Bump the actions group with 5 updates
- update to 0.0.31:
  * Handle editable projects with `pyproject.toml`

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip-api?expand=0&rev=24
2025-07-14 19:40:31 +00:00
ba4ad3db6f Accepting request 1282280 from devel:languages:python
- Convert to pip-based build

OBS-URL: https://build.opensuse.org/request/show/1282280
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip-api?expand=0&rev=11
2025-06-03 15:55:55 +00:00
1ffdf3baf1 - Convert to pip-based build
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip-api?expand=0&rev=22
2025-06-03 11:35:00 +00:00
6 changed files with 56 additions and 35 deletions

Binary file not shown.

3
pip_api-0.0.34.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9b75e958f14c5a2614bae415f2adf7eeb54d50a2cfbe7e24fd4826471bac3625
size 123017

View File

@@ -1,3 +1,20 @@
-------------------------------------------------------------------
Mon Jul 14 19:39:36 UTC 2025 - Dirk Müller <dmueller@suse.com>
- update to 0.0.34:
* meta: drop support for Python 3.7
- update to 0.0.33:
* fix release workflow, corrective release
- update to 0.0.32:
* Bump the actions group with 5 updates
- update to 0.0.31:
* Handle editable projects with `pyproject.toml`
-------------------------------------------------------------------
Tue Jun 3 11:33:20 UTC 2025 - Markéta Machová <mmachova@suse.com>
- Convert to pip-based build
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Nov 24 08:08:45 UTC 2023 - Antonio Larrosa <alarrosa@suse.com> Fri Nov 24 08:08:45 UTC 2023 - Antonio Larrosa <alarrosa@suse.com>

View File

@@ -1,7 +1,7 @@
# #
# spec file for package python-pip-api # spec file for package python-pip-api
# #
# Copyright (c) 2023 SUSE LLC # Copyright (c) 2025 SUSE LLC
# #
# 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,12 +18,12 @@
%{?sle15_python_module_pythons} %{?sle15_python_module_pythons}
Name: python-pip-api Name: python-pip-api
Version: 0.0.30 Version: 0.0.34
Release: 0 Release: 0
Summary: The official unofficial pip API Summary: The official unofficial pip API
License: Apache-2.0 License: Apache-2.0
URL: https://github.com/di/pip-api URL: https://github.com/di/pip-api
Source0: https://github.com/di/pip-api/releases/download/%{version}/pip-api-%{version}.tar.gz Source0: https://github.com/di/pip-api/releases/download/%{version}/pip_api-%{version}.tar.gz
Source1: test-data.tar.gz Source1: test-data.tar.gz
# PATCH-FIX-OPENSUSE We do not want a vendored packaging. # PATCH-FIX-OPENSUSE We do not want a vendored packaging.
Patch0: unvendor.patch Patch0: unvendor.patch
@@ -35,11 +35,13 @@ BuildRequires: %{python_module pip >= 22.1}
BuildRequires: %{python_module pretend} BuildRequires: %{python_module pretend}
BuildRequires: %{python_module pyparsing >= 2.4.7} BuildRequires: %{python_module pyparsing >= 2.4.7}
BuildRequires: %{python_module pytest} BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools} BuildRequires: %{python_module tomli}
BuildRequires: %{python_module virtualenv} BuildRequires: %{python_module virtualenv}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes BuildRequires: fdupes
BuildRequires: python-rpm-macros BuildRequires: python-rpm-macros
Requires: python-pip Requires: python-pip
Requires: python-tomli
BuildArch: noarch BuildArch: noarch
%python_subpackages %python_subpackages
@@ -47,14 +49,14 @@ BuildArch: noarch
The official unofficial pip API. The official unofficial pip API.
%prep %prep
%autosetup -p1 -a 1 -n pip-api-%{version} %autosetup -p1 -a 1 -n pip_api-%{version}
rm -Rf ./pip_api/_vendor rm -Rf ./pip_api/_vendor
%build %build
%python_build %pyproject_wheel
%install %install
%python_install %pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib} %python_expand %fdupes %{buildroot}%{$python_sitelib}
%check %check

View File

@@ -1,8 +1,8 @@
Index: pip-api-0.0.30/tests/test_parse_requirements.py Index: pip_api-0.0.34/tests/test_parse_requirements.py
=================================================================== ===================================================================
--- pip-api-0.0.30.orig/tests/test_parse_requirements.py --- pip_api-0.0.34.orig/tests/test_parse_requirements.py
+++ pip-api-0.0.30/tests/test_parse_requirements.py +++ pip_api-0.0.34/tests/test_parse_requirements.py
@@ -75,14 +75,6 @@ PEP508_PIP_EXAMPLE_WHEEL_FILE = "file:// @@ -73,14 +73,6 @@ PEP508_PIP_EXAMPLE_WHEEL_FILE = "file://
"", "",
), ),
( (

View File

@@ -1,7 +1,7 @@
Index: pip-api-0.0.30/pip_api/__init__.py Index: pip_api-0.0.34/pip_api/__init__.py
=================================================================== ===================================================================
--- pip-api-0.0.30.orig/pip_api/__init__.py --- pip_api-0.0.34.orig/pip_api/__init__.py
+++ pip-api-0.0.30/pip_api/__init__.py +++ pip_api-0.0.34/pip_api/__init__.py
@@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
import sys import sys
@@ -12,10 +12,10 @@ Index: pip-api-0.0.30/pip_api/__init__.py
# Import this now because we need it below # Import this now because we need it below
from pip_api._version import version from pip_api._version import version
Index: pip-api-0.0.30/pip_api/_hash.py Index: pip_api-0.0.34/pip_api/_hash.py
=================================================================== ===================================================================
--- pip-api-0.0.30.orig/pip_api/_hash.py --- pip_api-0.0.34.orig/pip_api/_hash.py
+++ pip-api-0.0.30/pip_api/_hash.py +++ pip_api-0.0.34/pip_api/_hash.py
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
import os import os
@@ -24,10 +24,10 @@ Index: pip-api-0.0.30/pip_api/_hash.py
import pip_api import pip_api
from pip_api._call import call from pip_api._call import call
Index: pip-api-0.0.30/pip_api/_installed_distributions.py Index: pip_api-0.0.34/pip_api/_installed_distributions.py
=================================================================== ===================================================================
--- pip-api-0.0.30.orig/pip_api/_installed_distributions.py --- pip_api-0.0.34.orig/pip_api/_installed_distributions.py
+++ pip-api-0.0.30/pip_api/_installed_distributions.py +++ pip_api-0.0.34/pip_api/_installed_distributions.py
@@ -7,7 +7,7 @@ import pip_api @@ -7,7 +7,7 @@ import pip_api
from pip_api._call import call from pip_api._call import call
from pip_api.exceptions import PipError from pip_api.exceptions import PipError
@@ -37,23 +37,25 @@ Index: pip-api-0.0.30/pip_api/_installed_distributions.py
class Distribution: class Distribution:
Index: pip-api-0.0.30/pip_api/_parse_requirements.py Index: pip_api-0.0.34/pip_api/_parse_requirements.py
=================================================================== ===================================================================
--- pip-api-0.0.30.orig/pip_api/_parse_requirements.py --- pip_api-0.0.34.orig/pip_api/_parse_requirements.py
+++ pip-api-0.0.30/pip_api/_parse_requirements.py +++ pip_api-0.0.34/pip_api/_parse_requirements.py
@@ -14,7 +14,7 @@ from typing import Any, Dict, Optional, @@ -11,8 +11,8 @@ from typing import Any, Dict, Optional,
from urllib.parse import urljoin, unquote, urlsplit from urllib.parse import unquote, urljoin, urlsplit
from urllib.request import pathname2url, url2pathname from urllib.request import pathname2url, url2pathname
-from pip_api._vendor import tomli
-from pip_api._vendor.packaging import requirements, specifiers # type: ignore -from pip_api._vendor.packaging import requirements, specifiers # type: ignore
+import tomli
+from packaging import requirements, specifiers # type: ignore +from packaging import requirements, specifiers # type: ignore
from pip_api.exceptions import PipError from pip_api.exceptions import PipError
Index: pip-api-0.0.30/tests/conftest.py parser = argparse.ArgumentParser()
Index: pip_api-0.0.34/tests/conftest.py
=================================================================== ===================================================================
--- pip-api-0.0.30.orig/tests/conftest.py --- pip_api-0.0.34.orig/tests/conftest.py
+++ pip-api-0.0.30/tests/conftest.py +++ pip_api-0.0.34/tests/conftest.py
@@ -6,7 +6,7 @@ import pytest @@ -6,7 +6,7 @@ import pytest
import pretend import pretend
import virtualenv import virtualenv
@@ -63,10 +65,10 @@ Index: pip-api-0.0.30/tests/conftest.py
import pip_api import pip_api
Index: pip-api-0.0.30/tests/test_installed_distributions.py Index: pip_api-0.0.34/tests/test_installed_distributions.py
=================================================================== ===================================================================
--- pip-api-0.0.30.orig/tests/test_installed_distributions.py --- pip_api-0.0.34.orig/tests/test_installed_distributions.py
+++ pip-api-0.0.30/tests/test_installed_distributions.py +++ pip_api-0.0.34/tests/test_installed_distributions.py
@@ -2,7 +2,7 @@ import os @@ -2,7 +2,7 @@ import os
import pytest import pytest