1
0

4 Commits

Author SHA256 Message Date
330fde161b Accepting request 1242831 from devel:languages:python:numeric
- update to 2025.1.1:
  * Improve type hints.
  * Support Python 3.13.

OBS-URL: https://build.opensuse.org/request/show/1242831
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-cmapfile?expand=0&rev=8
2025-02-03 20:45:13 +00:00
c620a7daff - update to 2025.1.1:
* Improve type hints.
  * Support Python 3.13.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-cmapfile?expand=0&rev=17
2025-02-03 13:28:47 +00:00
4ee54bfc2b Accepting request 1204497 from devel:languages:python:numeric
- update to 2024.8.28:
  * Fix lsm2cmap with tifffile > 2024.8.24.
  * Drop support for Python 3.9 and numpy < 1.24 (NEP29).

- Restrict numpy to < 2.

OBS-URL: https://build.opensuse.org/request/show/1204497
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-cmapfile?expand=0&rev=7
2024-09-30 13:38:37 +00:00
420cbdb716 - update to 2024.8.28:
* Fix lsm2cmap with tifffile > 2024.8.24.
  * Drop support for Python 3.9 and numpy < 1.24 (NEP29).
- Restrict numpy to < 2.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-cmapfile?expand=0&rev=15
2024-09-29 07:40:24 +00:00
4 changed files with 28 additions and 14 deletions

View File

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

3
cmapfile-2025.1.1.tar.gz Normal file
View File

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

View File

@@ -1,3 +1,17 @@
-------------------------------------------------------------------
Mon Feb 3 13:28:12 UTC 2025 - Dirk Müller <dmueller@suse.com>
- update to 2025.1.1:
* Improve type hints.
* Support Python 3.13.
-------------------------------------------------------------------
Sun Sep 29 07:38:31 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 2024.8.28:
* Fix lsm2cmap with tifffile > 2024.8.24.
* Drop support for Python 3.9 and numpy < 1.24 (NEP29).
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jul 17 07:22:57 UTC 2024 - Ben Greiner <code@bnavigator.de> Wed Jul 17 07:22:57 UTC 2024 - Ben Greiner <code@bnavigator.de>
@@ -7,7 +21,7 @@ Wed Jul 17 07:22:57 UTC 2024 - Ben Greiner <code@bnavigator.de>
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jul 17 02:13:38 UTC 2024 - Steve Kowalik <steven.kowalik@suse.com> Wed Jul 17 02:13:38 UTC 2024 - Steve Kowalik <steven.kowalik@suse.com>
- Restrict numpy to < 2. - Restrict numpy to < 2.
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 8 10:28:32 UTC 2024 - Dirk Müller <dmueller@suse.com> Mon Apr 8 10:28:32 UTC 2024 - Dirk Müller <dmueller@suse.com>

View File

@@ -1,7 +1,7 @@
# #
# spec file for package python-cmapfile # spec file for package python-cmapfile
# #
# Copyright (c) 2024 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,29 +18,29 @@
%{?sle15_python_module_pythons} %{?sle15_python_module_pythons}
Name: python-cmapfile Name: python-cmapfile
Version: 2023.8.30 Version: 2025.1.1
Release: 0 Release: 0
Summary: Write Chimera Map (CMAP) files Summary: Write Chimera Map (CMAP) files
License: BSD-3-Clause License: BSD-3-Clause
URL: https://github.com/cgohlke/cmapfile/ URL: https://github.com/cgohlke/cmapfile/
# SourceRepository: https://github.com/cgohlke/cmapfile # SourceRepository: https://github.com/cgohlke/cmapfile
Source: https://github.com/cgohlke/cmapfile/archive/v%{version}.tar.gz#/cmapfile-%{version}.tar.gz Source: https://github.com/cgohlke/cmapfile/archive/v%{version}.tar.gz#/cmapfile-%{version}.tar.gz
BuildRequires: %{python_module base >= 3.9} BuildRequires: %{python_module base >= 3.10}
BuildRequires: %{python_module h5py >= 3.1} BuildRequires: %{python_module h5py >= 3.11}
BuildRequires: %{python_module numpy >= 1.22} BuildRequires: %{python_module numpy >= 2.1.0}
BuildRequires: %{python_module oiffile >= 2021.6.6} BuildRequires: %{python_module oiffile >= 2021.6.6}
BuildRequires: %{python_module pip} BuildRequires: %{python_module pip}
BuildRequires: %{python_module scipy >= 1.5} BuildRequires: %{python_module scipy >= 1.14.1}
BuildRequires: %{python_module setuptools} BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module tifffile >= 2021.11.2} BuildRequires: %{python_module tifffile >= 2024.5.24}
BuildRequires: %{python_module wheel} BuildRequires: %{python_module wheel}
BuildRequires: fdupes BuildRequires: fdupes
BuildRequires: python-rpm-macros BuildRequires: python-rpm-macros
Requires: python-h5py >= 3.1 Requires: python-h5py >= 3.11
Requires: python-numpy >= 1.22 Requires: python-numpy >= 2.1.0
Requires: python-oiffile >= 2021.6.6 Requires: python-oiffile >= 2021.6.6
Requires: python-scipy >= 1.5 Requires: python-scipy >= 1.5
Requires: python-tifffile >= 2021.11.2 Requires: python-tifffile >= 2024.5.24
Requires(post): update-alternatives Requires(post): update-alternatives
Requires(postun): update-alternatives Requires(postun): update-alternatives
BuildArch: noarch BuildArch: noarch