19 Commits
f30 ... f37

Author SHA1 Message Date
Fedora Release Engineering
cfc56f5c7d Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2022-07-22 20:50:41 +00:00
Python Maint
7168906c10 Rebuilt for Python 3.11 2022-06-15 14:01:15 +02:00
Fedora Release Engineering
b936b37131 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2022-01-21 14:11:08 +00:00
Fedora Release Engineering
ee8b0fdc70 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2021-07-23 08:14:05 +00:00
Python Maint
eb667ff04c Rebuilt for Python 3.10 2021-06-04 20:50:55 +02:00
Fedora Release Engineering
b20c555636 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2021-01-27 12:18:24 +00:00
Matthias Runge
b4cf5d68e2 Add sources for 0.16.1 2021-01-25 08:33:31 +01:00
Matthias Runge
f1b5b2ff9d FTBFS and update to 0.16.1 2021-01-25 08:30:20 +01:00
Matthias Runge
a9395bff1f Update to 0.16
Resolves: rhbz#1882966
2020-09-28 11:39:48 +02:00
Lumir Balhar
da0cb6424f Fix test dependencies and execution 2020-09-21 15:12:35 +02:00
Fedora Release Engineering
d64a1411e3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2020-07-29 02:47:51 +00:00
Elliott Sales de Andrade
39976c49c1 Update to latest version. 2020-06-23 04:12:41 -04:00
Miro Hrončok
3e4151e82d Rebuilt for Python 3.9 2020-05-26 03:30:35 +02:00
Fedora Release Engineering
e0b5185c1a - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2020-01-30 14:04:29 +00:00
Matthias Runge
60b5b1f1f7 Update to 0.10.1
Resolves: rhbz#1789066
2020-01-09 21:50:20 +01:00
Matthias Runge
d201d7af72 Merge branch 'master' of ssh://pkgs.fedoraproject.org/rpms/python-pint 2019-09-05 09:02:12 +02:00
Matthias Runge
b85f62ca26 Skip test breaking python 3.8 for now 2019-09-05 08:59:18 +02:00
Miro Hrončok
b89bc15971 Rebuilt for Python 3.8 2019-08-19 10:49:54 +02:00
Fedora Release Engineering
b746efccb6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2019-07-26 15:11:58 +00:00
3 changed files with 91 additions and 19 deletions

4
.gitignore vendored
View File

@@ -1,2 +1,6 @@
/Pint-0.6.zip
/Pint-0.9.tar.gz
/Pint-0.10.1.tar.gz
/Pint-0.13.tar.gz
/Pint-0.16.tar.gz
/Pint-0.16.1.tar.gz

View File

@@ -1,19 +1,17 @@
%global pypi_name Pint
%{!?upstream_version: %global upstream_version %{version}%{?milestone}}
%bcond_with docs
Name: python-pint
Version: 0.9
Release: 3%{?dist}
Version: 0.16.1
Release: 8%{?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,116 @@ 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: 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}
# Babel tests are not ready, see https://github.com/hgrecco/pint/issues/663
rm pint/testsuite/test_babel.py
# drop numpy version requirement
sed -i '/@helpers.requires_numpy_at_least("1.16")/d' pint/testsuite/test_quantity.py
%generate_buildrequires
%pyproject_buildrequires -x test
%build
%py3_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
%py3_install
%pyproject_install
%check
%{__python3} setup.py test
%pytest
%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 %{with docs}
%files -n python3-pint-doc
%doc html
%license docs/_themes/LICENSE
%endif
%changelog
* 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
* 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

View File

@@ -1 +1 @@
SHA512 (Pint-0.9.tar.gz) = d79e0ff6377393f9dd8ce6a938440e8ed3c947642716974a3d69461d75776a39677d6651e6c081076f31e67a7dbffeb2fded42e61c9975f814b5eb24ab626fb6
SHA512 (Pint-0.16.1.tar.gz) = 7d18ff7a7e85ff98350347a487be62513b100e4adba701a8e5f27f6db89618931d0f62b67be42bda4af097f5f01830baa5a6b50a537924287214d0d954da5322