diff --git a/extra_platforms-5.0.1.tar.gz b/extra_platforms-5.0.1.tar.gz deleted file mode 100644 index b7a39f8..0000000 --- a/extra_platforms-5.0.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:96dddd8e16711187305e20cbc8005efada786155b658ac6983647c975a70ca34 -size 47529 diff --git a/extra_platforms-6.0.0.tar.gz b/extra_platforms-6.0.0.tar.gz new file mode 100644 index 0000000..72cc091 --- /dev/null +++ b/extra_platforms-6.0.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d8b71cd29f1e65acb7adced16c3f55ee9a444727f3639ea596e9839318346dc +size 138053 diff --git a/python-extra-platforms.changes b/python-extra-platforms.changes index 64fb254..5ebd1bb 100644 --- a/python-extra-platforms.changes +++ b/python-extra-platforms.changes @@ -1,3 +1,59 @@ +------------------------------------------------------------------- +Fri Jan 16 13:45:07 UTC 2026 - Johannes Kastl + +- update to 6.0.0: + * Add architecture detection: aarch64, arm, armv6l, armv7l, + armv8l, i386, i586, i686, loongarch64, mips, mips64, mips64el, + mipsel, ppc, ppc64, ppc64le, riscv32, riscv64, s390x, sparc, + sparc64, unknown_architecture, wasm32, wasm64, x86_64. + * Architectures, platforms and CI systems are now known as + traits. + * Add new current_traits() method to return all traits matching + the current environment: architecture, platforms and CI + systems. Deprecate current_platforms() in favor of it. + * Add new current_architecture() and current_ci() methods to + return the current architecture and CI system. + * Rename: + - current_os() to current_platform(). + - platforms_from_ids() to traits_from_ids(). + - CI group to ALL_CI. CI now refers to the CI(Trait) class. + - ALL_PLATFORM_IDS constant to ALL_TRAIT_IDS. + - Group.platforms to Group.members. + - Group.platform_ids to Group.member_ids. + - Group._extract_platforms() to Group._extract_members() + * Group.members is now an immutable MappingProxyType. + * Add more in-place operators (|=, &=, -=, ^=) and set-like + behavior to Group. + * Add canonical attribute to Group. + * Add new ALL_ARCHITECTURES, ANY_ARM, X86, LOONGARCH, ANY_MIPS, + POWERPC, RISCV, ANY_SPARC, IBM_MAINFRAME, WEBASSEMBLY and + ALL_TRAITS groups. + * Deprecate ALL_PLATFORMS_WITHOUT_CI group is favor of + ALL_PLATFORMS. + * Add new ALL_ARCHITECTURE_GROUPS, ALL_PLATFORM_GROUPS and + ALL_CI_GROUPS collections of groups. + * Remove utilization workaround for macos-15-intel. + * Replace deprecated codecov/test-results-action by + codecov/codecov-action. + * Move auto-lock time from 8:43 to 4:43. +- switch to tarball from GitHub, as the one from PyPi does no + longer container the tests directory + +------------------------------------------------------------------- +Tue Dec 9 06:44:50 UTC 2025 - Johannes Kastl + +- update to 5.1.0: + * Change Amazon Linux icon. + * Add cooldown period for dependabot and uv.lock updates. + * Merge all label jobs into a single one. + * Change the test, typing and docs extra dependency groups into + development dependency groups. + * Uncap all dependencies. + * Run tests on Python 3.14t and 3.15t free-threaded variants. + * Run tests on ubuntu-slim GitHub Actions runner. + * Run docs update job on ubuntu-slim runner. + * Unlock a CPU core stuck at 100% utilization on macos-15-intel. + ------------------------------------------------------------------- Mon Nov 17 06:55:54 UTC 2025 - Johannes Kastl diff --git a/python-extra-platforms.spec b/python-extra-platforms.spec index 3513ac1..4234b56 100644 --- a/python-extra-platforms.spec +++ b/python-extra-platforms.spec @@ -1,7 +1,7 @@ # # spec file for package python-extra-platforms # -# Copyright (c) 2025 SUSE LLC and contributors +# 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 @@ -18,15 +18,16 @@ %{?sle15_python_module_pythons} Name: python-extra-platforms -Version: 5.0.1 +Version: 6.0.0 Release: 0 Summary: Detect platforms and group them by family License: GPL-2.0-or-later URL: https://github.com/kdeldycke/extra-platforms -Source: https://files.pythonhosted.org/packages/source/e/extra-platforms/extra_platforms-%{version}.tar.gz +Source: https://github.com/kdeldycke/extra-platforms/archive/refs/tags/v%{version}.tar.gz#/extra_platforms-%{version}.tar.gz BuildRequires: %{python_module base >= 3.10} BuildRequires: %{python_module pip} BuildRequires: %{python_module setuptools} +BuildRequires: %{python_module uv-build} BuildRequires: %{python_module wheel} BuildRequires: python-rpm-macros # SECTION runtime requirements @@ -48,7 +49,7 @@ BuildArch: noarch Detect platforms and group them by family %prep -%autosetup -p1 -n extra_platforms-%{version} +%autosetup -p1 -n extra-platforms-%{version} %build %pyproject_wheel