|
|
|
@@ -1,17 +1,14 @@
|
|
|
|
|
%global pypi_name Pint
|
|
|
|
|
%{!?upstream_version: %global upstream_version %{version}%{?milestone}}
|
|
|
|
|
%bcond_with docs
|
|
|
|
|
|
|
|
|
|
Name: python-pint
|
|
|
|
|
Version: 0.10.1
|
|
|
|
|
Release: 2%{?dist}
|
|
|
|
|
Version: 0.16.1
|
|
|
|
|
Release: 12%{?dist}
|
|
|
|
|
Summary: Physical quantities module
|
|
|
|
|
|
|
|
|
|
License: BSD
|
|
|
|
|
URL: https://github.com/hgrecco/pint
|
|
|
|
|
Source0: https://pypi.python.org/packages/source/P/%{pypi_name}/%{pypi_name}-%{version}.tar.gz
|
|
|
|
|
|
|
|
|
|
# Use context manager for assertWarns and fix DeprecationWarning
|
|
|
|
|
Patch0: https://github.com/hgrecco/pint/commit/955102b318a4ecc34afd0f366e826ef174fe647b.patch
|
|
|
|
|
Source0: %pypi_source
|
|
|
|
|
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
BuildRequires: pyproject-rpm-macros
|
|
|
|
@@ -29,6 +26,9 @@ and constants.
|
|
|
|
|
Summary: Physical quantities module
|
|
|
|
|
%{?python_provide:%python_provide python3-pint}
|
|
|
|
|
|
|
|
|
|
BuildRequires: python3-numpy
|
|
|
|
|
BuildRequires: python3-pytest
|
|
|
|
|
|
|
|
|
|
%description -n python3-pint
|
|
|
|
|
Pint is Python module/package to define, operate and manipulate physical
|
|
|
|
|
quantities: the product of a numerical value and a unit of measurement.
|
|
|
|
@@ -38,51 +38,131 @@ to different units.
|
|
|
|
|
It is distributed with a comprehensive list of physical units, prefixes
|
|
|
|
|
and constants.
|
|
|
|
|
|
|
|
|
|
%if %{with docs}
|
|
|
|
|
%package -n python3-pint-doc
|
|
|
|
|
Summary: Documentation for the pint module
|
|
|
|
|
%{?python_provide:%python_provide python3-pint-doc}
|
|
|
|
|
|
|
|
|
|
BuildRequires: python3-sphinx
|
|
|
|
|
BuildRequires: python3-nbsphinx
|
|
|
|
|
BuildRequires: python3-pytest
|
|
|
|
|
BuildRequires: python3-numpy
|
|
|
|
|
BuildRequires: pandoc
|
|
|
|
|
BuildRequires: python3-graphviz
|
|
|
|
|
BuildRequires: python3-ipykernel
|
|
|
|
|
BuildRequires: python3-jupyter-client
|
|
|
|
|
BuildRequires: python3-matplotlib
|
|
|
|
|
BuildRequires: python3-nbsphinx
|
|
|
|
|
BuildRequires: python3-pandas
|
|
|
|
|
BuildRequires: python3-dask
|
|
|
|
|
BuildRequires: python3-pygments
|
|
|
|
|
BuildRequires: python3-sphinx
|
|
|
|
|
BuildRequires: python3-xarray
|
|
|
|
|
|
|
|
|
|
%description -n python3-pint-doc
|
|
|
|
|
Documentation for the pint module
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%setup -q -n %{pypi_name}-%{version}
|
|
|
|
|
|
|
|
|
|
# numpy 1.24.x removes np.float np.alen and so on
|
|
|
|
|
# These are already fixed upstream
|
|
|
|
|
grep -rl "dtype=np\.float" . | xargs sed -i -e 's|dtype=np\.float|dtype=float|'
|
|
|
|
|
sed -i pint/testsuite/test_numpy.py \
|
|
|
|
|
-e 's|dtype=float32|dtype=np.float32|' \
|
|
|
|
|
-e 's|dtype=float64|dtype=np.float64|' \
|
|
|
|
|
-e 's|np\.alen|len|' \
|
|
|
|
|
%{nil}
|
|
|
|
|
|
|
|
|
|
# Workaround for https://github.com/hgrecco/pint/issues/1818
|
|
|
|
|
sed -i pint/testsuite/__init__.py -e '115s|except TypeError:|except (TypeError, ValueError):|'
|
|
|
|
|
|
|
|
|
|
# python 3.12 removes deprecated unittest.assertEquals
|
|
|
|
|
# This is already fixed upstream
|
|
|
|
|
sed -i pint/testsuite/test_contexts.py -e 's|self.assertEquals|self.assertEqual|'
|
|
|
|
|
|
|
|
|
|
# drop numpy version requirement
|
|
|
|
|
sed -i '/@helpers.requires_numpy_at_least("1.16")/d' pint/testsuite/test_quantity.py
|
|
|
|
|
|
|
|
|
|
%generate_buildrequires
|
|
|
|
|
%pyproject_buildrequires -t
|
|
|
|
|
%pyproject_buildrequires -x test
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
%pyproject_wheel
|
|
|
|
|
|
|
|
|
|
%if %{with docs}
|
|
|
|
|
export PYTHONPATH="$( pwd ):$PYTHONPATH"
|
|
|
|
|
sphinx-build-3 docs html
|
|
|
|
|
# remove the sphinx-build leftovers
|
|
|
|
|
|
|
|
|
|
rm -rf html/.{doctrees,buildinfo}
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
%pyproject_install
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
|
%tox
|
|
|
|
|
%pytest
|
|
|
|
|
|
|
|
|
|
%files -n python3-pint
|
|
|
|
|
%license LICENSE
|
|
|
|
|
%{_bindir}/pint-convert
|
|
|
|
|
%{python3_sitelib}/pint
|
|
|
|
|
%{python3_sitelib}/Pint-%{version}.*
|
|
|
|
|
|
|
|
|
|
%if %{with docs}
|
|
|
|
|
%files -n python3-pint-doc
|
|
|
|
|
%doc html
|
|
|
|
|
%license docs/_themes/LICENSE
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.16.1-12
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Sun Jul 16 2023 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.16.1-11
|
|
|
|
|
- Support numpy 1.24.x some types removal which were already deprecated
|
|
|
|
|
- Workaround python3.12 changes for Fractions which now returns ValueError
|
|
|
|
|
instead of TypeError
|
|
|
|
|
- Fix for python3.12 with unittest.assertEquals removal
|
|
|
|
|
|
|
|
|
|
* Tue Jun 27 2023 Python Maint <python-maint@redhat.com> - 0.16.1-10
|
|
|
|
|
- Rebuilt for Python 3.12
|
|
|
|
|
|
|
|
|
|
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.16.1-9
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.16.1-8
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Wed Jun 15 2022 Python Maint <python-maint@redhat.com> - 0.16.1-7
|
|
|
|
|
- Rebuilt for Python 3.11
|
|
|
|
|
|
|
|
|
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.16.1-6
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.16.1-5
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 0.16.1-4
|
|
|
|
|
- Rebuilt for Python 3.10
|
|
|
|
|
|
|
|
|
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.16.1-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Sun Jan 24 2021 Matthias Runge <mrunge@redhat.com> - 0.16.1-2
|
|
|
|
|
- rebuild without bootstrap
|
|
|
|
|
- fix FTBFS (rhbz#1914333)
|
|
|
|
|
|
|
|
|
|
* Mon Sep 21 2020 Lumír Balhar <lbalhar@redhat.com> - 0.13-3
|
|
|
|
|
- Fix test dependencies and execution
|
|
|
|
|
|
|
|
|
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.13-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Jun 23 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.13-1
|
|
|
|
|
- Update to 0.13
|
|
|
|
|
|
|
|
|
|
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 0.10.1-3
|
|
|
|
|
- Rebuilt for Python 3.9
|
|
|
|
|
|
|
|
|
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.10.1-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|