Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d64a1411e3 | ||
|
|
39976c49c1 | ||
|
|
3e4151e82d | ||
|
|
e0b5185c1a | ||
|
|
60b5b1f1f7 | ||
|
|
d201d7af72 | ||
|
|
b85f62ca26 | ||
|
|
b89bc15971 | ||
|
|
b746efccb6 |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,2 +1,4 @@
|
||||
/Pint-0.6.zip
|
||||
/Pint-0.9.tar.gz
|
||||
/Pint-0.10.1.tar.gz
|
||||
/Pint-0.13.tar.gz
|
||||
|
||||
@@ -1,19 +1,17 @@
|
||||
%global pypi_name Pint
|
||||
%{!?upstream_version: %global upstream_version %{version}%{?milestone}}
|
||||
%bcond_without bootstrap
|
||||
|
||||
Name: python-pint
|
||||
Version: 0.9
|
||||
Release: 3%{?dist}
|
||||
Version: 0.13
|
||||
Release: 2%{?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
|
||||
|
||||
%description
|
||||
Pint is Python module/package to define, operate and manipulate physical
|
||||
@@ -28,9 +26,8 @@ and constants.
|
||||
Summary: Physical quantities module
|
||||
%{?python_provide:%python_provide python3-pint}
|
||||
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-sphinx
|
||||
BuildRequires: python3-setuptools
|
||||
BuildRequires: python3-numpy
|
||||
BuildRequires: python3-pytest
|
||||
|
||||
%description -n python3-pint
|
||||
Pint is Python module/package to define, operate and manipulate physical
|
||||
@@ -41,45 +38,85 @@ to different units.
|
||||
It is distributed with a comprehensive list of physical units, prefixes
|
||||
and constants.
|
||||
|
||||
%if %{without bootstrap}
|
||||
%package -n python3-pint-doc
|
||||
Summary: Documentation for the pint module
|
||||
%{?python_provide:%python_provide python3-pint-doc}
|
||||
BuildRequires: python3-sphinx
|
||||
|
||||
BuildRequires: pandoc
|
||||
BuildRequires: python3-graphviz
|
||||
BuildRequires: python3-ipykernel
|
||||
BuildRequires: python3-jupyter-client
|
||||
BuildRequires: python3-matplotlib
|
||||
BuildRequires: python3-nbsphinx
|
||||
BuildRequires: python3-sphinx
|
||||
BuildRequires: python3-xarray
|
||||
|
||||
%description -n python3-pint-doc
|
||||
Documentation for the pint module
|
||||
%endif
|
||||
|
||||
%prep
|
||||
%setup -q -n %{pypi_name}-%{version}
|
||||
|
||||
# Babel tests are not ready, see https://github.com/hgrecco/pint/issues/663
|
||||
rm pint/testsuite/test_babel.py
|
||||
%generate_buildrequires
|
||||
%pyproject_buildrequires -t
|
||||
|
||||
%build
|
||||
%py3_build
|
||||
%pyproject_wheel
|
||||
|
||||
%if %{without bootstrap}
|
||||
export PYTHONPATH="$( pwd ):$PYTHONPATH"
|
||||
sphinx-build-3 docs html
|
||||
# remove the sphinx-build leftovers
|
||||
|
||||
rm -rf html/.{doctrees,buildinfo}
|
||||
%endif
|
||||
|
||||
%install
|
||||
%py3_install
|
||||
%pyproject_install
|
||||
|
||||
%check
|
||||
%{__python3} setup.py test
|
||||
%tox
|
||||
|
||||
%files -n python3-pint
|
||||
%doc README
|
||||
%license LICENSE
|
||||
%{_bindir}/pint-convert
|
||||
%{python3_sitelib}/pint
|
||||
%{python3_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info
|
||||
%{python3_sitelib}/Pint-%{version}.*
|
||||
|
||||
%if %{without bootstrap}
|
||||
%files -n python3-pint-doc
|
||||
%doc html
|
||||
%license docs/_themes/LICENSE
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* 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
|
||||
|
||||
* Thu Jan 09 2020 Matthias Runge <mrunge@redhat.com> - 0.10.1-1
|
||||
- update to 0.10.1 (rhbz#1789066)
|
||||
- modernize specfile
|
||||
|
||||
* Thu Sep 05 2019 Matthias Runge <mrunge@redhat.com> - 0.9-5
|
||||
- skip test_quantity for now (rhbz#1706212)
|
||||
|
||||
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.9-5
|
||||
- Rebuilt for Python 3.8
|
||||
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.9-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Wed Jul 10 2019 Matthias Runge <mrunge@redhat.com> - 0.9-3
|
||||
- Use context manager for assertWarns and fix DeprecationWarning
|
||||
resolves: rhbz#1706212
|
||||
|
||||
2
sources
2
sources
@@ -1 +1 @@
|
||||
SHA512 (Pint-0.9.tar.gz) = d79e0ff6377393f9dd8ce6a938440e8ed3c947642716974a3d69461d75776a39677d6651e6c081076f31e67a7dbffeb2fded42e61c9975f814b5eb24ab626fb6
|
||||
SHA512 (Pint-0.13.tar.gz) = bb5212958fdf25b37eeb08f0e3c0766991cfe6ff508fc5a17611afc1f6841c5d82dae0cdf94cf3d565be76c3ce2224d2bd6a073e257dd393ad257540f39a848f
|
||||
|
||||
Reference in New Issue
Block a user