- Update to version 0.7.1: - Drop gwosc-pytest-warns.patch: incorporated upstream. - Use wheel based builds instead of setuptools. OBS-URL: https://build.opensuse.org/request/show/1088717 OBS-URL: https://build.opensuse.org/package/show/science/python-gwosc?expand=0&rev=8
77 lines
2.3 KiB
RPMSpec
77 lines
2.3 KiB
RPMSpec
#
|
|
# spec file for package python-gwosc
|
|
#
|
|
# Copyright (c) 2023 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define modname gwosc
|
|
%define skip_python2 1
|
|
|
|
Name: python-gwosc
|
|
Version: 0.7.1
|
|
Release: 0
|
|
Summary: Python interface to the Gravitational-Wave Open Data Center archive
|
|
License: MIT
|
|
URL: https://gwosc.readthedocs.io/en/latest/
|
|
Source: https://files.pythonhosted.org/packages/source/g/%{modname}/%{modname}-%{version}.tar.gz
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: %{python_module setuptools_scm}
|
|
BuildRequires: %{python_module wheel}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
# SECTION For tests
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module requests >= 1.0.0}
|
|
BuildRequires: %{python_module requests-mock}
|
|
# /SECTION
|
|
Requires: python-requests >= 1.0.0
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
The gwosc package provides an interface to querying the open data
|
|
releases hosted on https://gw-openscience.org from the GEO, LIGO, and
|
|
Virgo gravitational-wave observatories.
|
|
|
|
%prep
|
|
%autosetup -p1 -n %{modname}-%{version}
|
|
sed -i 's/--color=yes//' pyproject.toml
|
|
|
|
%build
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%pyproject_install
|
|
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}/%{modname}/
|
|
|
|
%check
|
|
# macro missing for <SLE-15-SP1, (is the science project still supporting that?)
|
|
%{?!pytest:%define pytest py.test}
|
|
# requests_mock too old for <= 15.1
|
|
%if 0%{?suse_version} == 1500 && 0%{?sle_version} <= 150100
|
|
%pytest -k "not remote and not test_fetch_json_local"
|
|
%else
|
|
%pytest -k "not remote"
|
|
%endif
|
|
|
|
%files %{python_files}
|
|
%license LICENSE
|
|
%doc README.md
|
|
%{python_sitelib}/%{modname}/
|
|
%{python_sitelib}/%{modname}-%{version}*-info/
|
|
|
|
%changelog
|