Compare commits

4 Commits

Author SHA256 Message Date
c03f022770 Accepting request 1233502 from devel:languages:python
- Update to 1.3.0:
  - Add support for Python 3.13
  - Turn missing config file into a warning instead of an error
  - Add support for __pyp_before__ configuration for permanent
    before code

OBS-URL: https://build.opensuse.org/request/show/1233502
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyp?expand=0&rev=5
2024-12-29 10:56:47 +00:00
809dcea2f3 - Update to 1.3.0:
- Add support for Python 3.13
  - Turn missing config file into a warning instead of an error
  - Add support for __pyp_before__ configuration for permanent
    before code

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyp?expand=0&rev=10
2024-12-27 09:04:31 +00:00
2915260fb5 Accepting request 1229391 from devel:languages:python
- Skip failing tests for Python 3.13 (gh#hauntsaninja/pyp#40).

OBS-URL: https://build.opensuse.org/request/show/1229391
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyp?expand=0&rev=4
2024-12-09 20:12:54 +00:00
aa1d571cbc - Skip failing tests for Python 3.13 (gh#hauntsaninja/pyp#40).
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyp?expand=0&rev=8
2024-12-09 13:03:36 +00:00
4 changed files with 19 additions and 5 deletions

View File

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

3
pyp-1.3.0.tar.gz Normal file
View File

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

View File

@@ -1,3 +1,17 @@
-------------------------------------------------------------------
Fri Dec 27 09:01:06 UTC 2024 - Matej Cepl <mcepl@cepl.eu>
- Update to 1.3.0:
- Add support for Python 3.13
- Turn missing config file into a warning instead of an error
- Add support for __pyp_before__ configuration for permanent
before code
-------------------------------------------------------------------
Mon Dec 9 13:03:02 UTC 2024 - Matej Cepl <mcepl@cepl.eu>
- Skip failing tests for Python 3.13 (gh#hauntsaninja/pyp#40).
-------------------------------------------------------------------
Tue Mar 26 13:06:58 UTC 2024 - Markéta Machová <mmachova@suse.com>

View File

@@ -19,7 +19,7 @@
%define skip_python2 1
Name: python-pyp
Version: 1.2.0
Version: 1.3.0
Release: 0
Summary: Python at the shell
License: MIT
@@ -64,7 +64,7 @@ sed -i '/^#!\//, 1d' pyp.py
%check
export PATH=$(pwd):$PATH
%{python_expand ln -sf %{buildroot}%{_bindir}/pyp-%{$python_bin_suffix} pyp
PYTHONPATH=%{buildroot}%{$python_sitelib} py.test-%{$python_bin_suffix} -vv
PYTHONPATH=%{buildroot}%{$python_sitelib} py.test-%{$python_bin_suffix} -vv "$( [ -n "${skip_tests_$python}" ] && printf "%s" '-k not ('"${skip_tests_$python}"')')"
}
%post