Compare commits
34 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d61024c99f | |||
| 727e6be146 | |||
| ad9325b7b8 | |||
| c2be71b087 | |||
| cf8c438699 | |||
| 95bbfe711e | |||
| a39f78a8f2 | |||
| 87b8f373f9 | |||
| f584edab04 | |||
| d33feadeb3 | |||
| 941282bda6 | |||
| 0835a12374 | |||
| dade936c27 | |||
| 2d8428c2ec | |||
| 7ff5e92075 | |||
| 799b93479a | |||
| 44323f33dc | |||
| e1d6b874f0 | |||
| 34be7893c4 | |||
| 08d98bcdf8 | |||
| 11bba046eb | |||
| ed2289d1b5 | |||
| a246b59559 | |||
| 6cb08795c1 | |||
| f64064ed55 | |||
| 1cbef20513 | |||
| 4c7ab1ff54 | |||
| e9b556312f | |||
| 2b6a46e954 | |||
| f6f15174a5 | |||
| cc6f821c92 | |||
| d3cc22fd5d | |||
| 83adb07ab7 | |||
| 684506e15f |
+13
@@ -4,3 +4,16 @@
|
|||||||
/Pint-0.13.tar.gz
|
/Pint-0.13.tar.gz
|
||||||
/Pint-0.16.tar.gz
|
/Pint-0.16.tar.gz
|
||||||
/Pint-0.16.1.tar.gz
|
/Pint-0.16.1.tar.gz
|
||||||
|
/Pint-0.17.tar.gz
|
||||||
|
/Pint-0.19.tar.gz
|
||||||
|
/Pint-0.19.2.tar.gz
|
||||||
|
/Pint-0.20.tar.gz
|
||||||
|
/Pint-0.20.1.tar.gz
|
||||||
|
/Pint-0.21.tar.gz
|
||||||
|
/Pint-0.21.1.tar.gz
|
||||||
|
/Pint-0.22.tar.gz
|
||||||
|
/Pint-0.23.tar.gz
|
||||||
|
/pint-0.24.tar.gz
|
||||||
|
/pint-0.24.1.tar.gz
|
||||||
|
/pint-0.24.3.tar.gz
|
||||||
|
/pint-0.24.4.tar.gz
|
||||||
|
|||||||
@@ -1,59 +0,0 @@
|
|||||||
From 955102b318a4ecc34afd0f366e826ef174fe647b Mon Sep 17 00:00:00 2001
|
|
||||||
From: xtreak <tir.karthi@gmail.com>
|
|
||||||
Date: Sat, 29 Jun 2019 04:58:59 +0000
|
|
||||||
Subject: [PATCH] Use context manager for assertWarns and fix
|
|
||||||
DeprecationWarning
|
|
||||||
|
|
||||||
---
|
|
||||||
pint/testsuite/parameterized.py | 7 ++++++-
|
|
||||||
pint/testsuite/test_quantity.py | 5 +++--
|
|
||||||
2 files changed, 9 insertions(+), 3 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/pint/testsuite/parameterized.py b/pint/testsuite/parameterized.py
|
|
||||||
index 9b920373..7c459157 100644
|
|
||||||
--- a/pint/testsuite/parameterized.py
|
|
||||||
+++ b/pint/testsuite/parameterized.py
|
|
||||||
@@ -32,6 +32,11 @@
|
|
||||||
import collections
|
|
||||||
import unittest
|
|
||||||
|
|
||||||
+try:
|
|
||||||
+ from collections.abc import Callable
|
|
||||||
+except ImportError:
|
|
||||||
+ from collections import Callable
|
|
||||||
+
|
|
||||||
def add_metaclass(metaclass):
|
|
||||||
"""Class decorator for creating a class with a metaclass."""
|
|
||||||
def wrapper(cls):
|
|
||||||
@@ -69,7 +74,7 @@ def __new__(meta, classname, bases, class_dict):
|
|
||||||
new_class_dict = {}
|
|
||||||
|
|
||||||
for attr_name, attr_value in list(class_dict.items()):
|
|
||||||
- if isinstance(attr_value, collections.Callable) and hasattr(attr_value, 'param_names'):
|
|
||||||
+ if isinstance(attr_value, Callable) and hasattr(attr_value, 'param_names'):
|
|
||||||
# print("Processing attr_name = %r; attr_value = %r" % (
|
|
||||||
# attr_name, attr_value))
|
|
||||||
|
|
||||||
diff --git a/pint/testsuite/test_quantity.py b/pint/testsuite/test_quantity.py
|
|
||||||
index fdb24600..232eea2c 100644
|
|
||||||
--- a/pint/testsuite/test_quantity.py
|
|
||||||
+++ b/pint/testsuite/test_quantity.py
|
|
||||||
@@ -383,7 +383,7 @@ def test_from_sequence(self):
|
|
||||||
self.assertFalse(u_array_2.u == u_array_ref_reversed.u)
|
|
||||||
|
|
||||||
u_array_3 = self.Q_.from_sequence(u_seq_reversed, units='g')
|
|
||||||
- self.assertTrue(all(u_array_3 == u_array_ref_reversed))
|
|
||||||
+ self.assertTrue(all(u_array_3 == u_array_ref_reversed))
|
|
||||||
self.assertTrue(u_array_3.u == u_array_ref_reversed.u)
|
|
||||||
|
|
||||||
with self.assertRaises(ValueError):
|
|
||||||
@@ -454,7 +454,8 @@ def test_limits_magnitudes(self):
|
|
||||||
def test_nonnumeric_magnitudes(self):
|
|
||||||
ureg = self.ureg
|
|
||||||
x = "some string"*ureg.m
|
|
||||||
- self.assertRaises(RuntimeError, self.compareQuantity_compact(x,x))
|
|
||||||
+ with self.assertWarns(RuntimeWarning):
|
|
||||||
+ self.compareQuantity_compact(x,x)
|
|
||||||
|
|
||||||
class TestQuantityBasicMath(QuantityTestCase):
|
|
||||||
|
|
||||||
@@ -0,0 +1,128 @@
|
|||||||
|
* Fri Aug 25 2023 Mark E. Fuller <fuller@fedoraproject.org> - 0.17-1
|
||||||
|
- Bump to minimum version required to compile Cantera 3.0.0
|
||||||
|
- Switch to autorelease in spec
|
||||||
|
|
||||||
|
* 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
|
||||||
|
|
||||||
|
* 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
|
||||||
|
|
||||||
|
* Sun Mar 17 2019 Miro Hrončok <mhroncok@redhat.com> - 0.9-2
|
||||||
|
- Subpackages python2-pint, python2-pint-doc have been removed
|
||||||
|
See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal
|
||||||
|
|
||||||
|
* Mon Feb 25 2019 Yatin Karel <ykarel@redhat.com> - 0.9-1
|
||||||
|
- Update to 0.9
|
||||||
|
|
||||||
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.6-16
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6-15
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.6-14
|
||||||
|
- Rebuilt for Python 3.7
|
||||||
|
|
||||||
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6-13
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jan 27 2018 Iryna Shcherbina <ishcherb@redhat.com> - 0.6-12
|
||||||
|
- Update Python 2 dependency declarations to new packaging standards
|
||||||
|
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
||||||
|
|
||||||
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6-11
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6-10
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 0.6-9
|
||||||
|
- Rebuild for Python 3.6
|
||||||
|
|
||||||
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6-8
|
||||||
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.6-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
||||||
|
|
||||||
|
* Sun Sep 06 2015 Matthias Runge <mrunge@redhat.com> - 0.6-5
|
||||||
|
- fix uppercase/lowercase naming, fix obsoletes
|
||||||
|
|
||||||
|
* Fri Sep 04 2015 Chandan Kumar <chkumar246@gmail.com> - 0.6-4
|
||||||
|
- Add python2 and python3 subpackages
|
||||||
|
|
||||||
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Dec 15 2014 Matthias Runge <mrunge@redhat.com> - 0.6-2
|
||||||
|
- change BR python-devel to python2-devel (rhbz#1173109)
|
||||||
|
|
||||||
|
* Thu Dec 11 2014 Matthias Runge <mrunge@redhat.com> - 0.6-1
|
||||||
|
- Initial package.
|
||||||
+83
-181
@@ -1,212 +1,114 @@
|
|||||||
%global pypi_name Pint
|
# python-xarray is not available on EPEL10
|
||||||
%bcond_with docs
|
%bcond xarray 0
|
||||||
|
# Not yet packaged: python-uncertainties
|
||||||
|
%bcond uncertainties 0
|
||||||
|
# Requires babel <= 2.8; F42 has 2.16.0
|
||||||
|
%bcond babel 0
|
||||||
|
# Not yet packaged: python-pint-pandas
|
||||||
|
%bcond pandas 0
|
||||||
|
# Not yet packaged: python-mip
|
||||||
|
%bcond mip 0
|
||||||
|
# python-dask is not available on EPEL10
|
||||||
|
%bcond dask 0
|
||||||
|
|
||||||
Name: python-pint
|
Name: python-pint
|
||||||
Version: 0.16.1
|
Version: 0.24.4
|
||||||
Release: 9%{?dist}
|
Release: %autorelease
|
||||||
Summary: Physical quantities module
|
Summary: Physical quantities module
|
||||||
|
|
||||||
License: BSD
|
License: BSD-3-Clause
|
||||||
URL: https://github.com/hgrecco/pint
|
URL: https://github.com/hgrecco/pint
|
||||||
Source0: %pypi_source
|
Source: %{pypi_source pint}
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRequires: pyproject-rpm-macros
|
|
||||||
|
|
||||||
%description
|
%global _description %{expand:
|
||||||
Pint is Python module/package to define, operate and manipulate physical
|
Pint is a Python package to define, operate and manipulate physical quantities:
|
||||||
quantities: the product of a numerical value and a unit of measurement.
|
the product of a numerical value and a unit of measurement. It allows
|
||||||
It allows arithmetic operations between them and conversions from and
|
arithmetic operations between them and conversions from and to different units.
|
||||||
to different units.
|
|
||||||
|
|
||||||
It is distributed with a comprehensive list of physical units, prefixes
|
It is distributed with a comprehensive list of physical units, prefixes and
|
||||||
and constants.
|
constants.}
|
||||||
|
|
||||||
|
%description %{_description}
|
||||||
|
|
||||||
%package -n python3-pint
|
%package -n python3-pint
|
||||||
Summary: Physical quantities module
|
Summary: %{summary}
|
||||||
%{?python_provide:%python_provide python3-pint}
|
|
||||||
|
|
||||||
BuildRequires: python3-numpy
|
%description -n python3-pint %{_description}
|
||||||
BuildRequires: python3-pytest
|
|
||||||
|
|
||||||
%description -n python3-pint
|
%pyproject_extras_subpkg -n python3-pint numpy
|
||||||
Pint is Python module/package to define, operate and manipulate physical
|
%if %{with xarray}
|
||||||
quantities: the product of a numerical value and a unit of measurement.
|
%pyproject_extras_subpkg -n python3-pint xarray
|
||||||
It allows arithmetic operations between them and conversions from and
|
%endif
|
||||||
to different units.
|
%if %{with dask}
|
||||||
|
%pyproject_extras_subpkg -n python3-pint dask
|
||||||
It is distributed with a comprehensive list of physical units, prefixes
|
%endif
|
||||||
and constants.
|
%if %{with uncertainties}
|
||||||
|
%pyproject_extras_subpkg -n python3-pint uncertainties
|
||||||
%if %{with docs}
|
%endif
|
||||||
%package -n python3-pint-doc
|
%if %{with babel}
|
||||||
Summary: Documentation for the pint module
|
%pyproject_extras_subpkg -n python3-pint babel
|
||||||
%{?python_provide:%python_provide python3-pint-doc}
|
%endif
|
||||||
|
%if %{with pandas}
|
||||||
BuildRequires: pandoc
|
%pyproject_extras_subpkg -n python3-pint pandas
|
||||||
BuildRequires: python3-graphviz
|
%endif
|
||||||
BuildRequires: python3-ipykernel
|
%if %{with mip}
|
||||||
BuildRequires: python3-jupyter-client
|
%pyproject_extras_subpkg -n python3-pint mip
|
||||||
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
|
%endif
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{pypi_name}-%{version}
|
%autosetup -n pint-%{version} -p1
|
||||||
|
|
||||||
# drop numpy version requirement
|
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Python/#_linters
|
||||||
sed -i '/@helpers.requires_numpy_at_least("1.16")/d' pint/testsuite/test_quantity.py
|
sed -r -i '/pytest-cov/d' pyproject.toml
|
||||||
|
|
||||||
|
# pytest-mpl is not available on EPEL10
|
||||||
|
sed -r -i '/pytest-mpl/d' pyproject.toml
|
||||||
|
|
||||||
|
# This module is executable in the source, and it might make sense for upstream
|
||||||
|
# to run it directly as a script during development, but this package will
|
||||||
|
# install it in site-packages without the executable bit set, so it doesn’t
|
||||||
|
# make sense for it to have a shebang. Package users will run it via the
|
||||||
|
# generated pint-convert entry point instead.
|
||||||
|
sed -r -i '1{/^#!/d}' pint/pint_convert.py
|
||||||
|
|
||||||
%generate_buildrequires
|
%generate_buildrequires
|
||||||
%pyproject_buildrequires -x test
|
%{pyproject_buildrequires \
|
||||||
|
-x numpy \
|
||||||
|
%if %{with uncertainties}
|
||||||
|
-x uncertainties \
|
||||||
|
%endif
|
||||||
|
%if %{with babel}
|
||||||
|
-x babel \
|
||||||
|
%endif
|
||||||
|
%if %{with pandas}
|
||||||
|
-x pandas \
|
||||||
|
%endif
|
||||||
|
%if %{with xarray}
|
||||||
|
-x xarray \
|
||||||
|
%endif
|
||||||
|
%if %{with dask}
|
||||||
|
-x dask \
|
||||||
|
%endif
|
||||||
|
%if %{with mip}
|
||||||
|
-x mip \
|
||||||
|
%endif
|
||||||
|
-x test}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%pyproject_wheel
|
%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
|
%install
|
||||||
%pyproject_install
|
%pyproject_install
|
||||||
|
%pyproject_save_files -l pint
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%pytest
|
# -rs: print reasons for skipped tests
|
||||||
|
%pytest -rs
|
||||||
|
|
||||||
%files -n python3-pint
|
%files -n python3-pint -f %{pyproject_files}
|
||||||
%license LICENSE
|
|
||||||
%{_bindir}/pint-convert
|
%{_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
|
%changelog
|
||||||
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.16.1-9
|
%autochangelog
|
||||||
- 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
|
|
||||||
|
|
||||||
* 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
|
|
||||||
|
|
||||||
* Sun Mar 17 2019 Miro Hrončok <mhroncok@redhat.com> - 0.9-2
|
|
||||||
- Subpackages python2-pint, python2-pint-doc have been removed
|
|
||||||
See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal
|
|
||||||
|
|
||||||
* Mon Feb 25 2019 Yatin Karel <ykarel@redhat.com> - 0.9-1
|
|
||||||
- Update to 0.9
|
|
||||||
|
|
||||||
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.6-16
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6-15
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.6-14
|
|
||||||
- Rebuilt for Python 3.7
|
|
||||||
|
|
||||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6-13
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jan 27 2018 Iryna Shcherbina <ishcherb@redhat.com> - 0.6-12
|
|
||||||
- Update Python 2 dependency declarations to new packaging standards
|
|
||||||
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
|
||||||
|
|
||||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6-11
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6-10
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 0.6-9
|
|
||||||
- Rebuild for Python 3.6
|
|
||||||
|
|
||||||
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6-8
|
|
||||||
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
||||||
|
|
||||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.6-7
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6-6
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
|
||||||
|
|
||||||
* Sun Sep 06 2015 Matthias Runge <mrunge@redhat.com> - 0.6-5
|
|
||||||
- fix uppercase/lowercase naming, fix obsoletes
|
|
||||||
|
|
||||||
* Fri Sep 04 2015 Chandan Kumar <chkumar246@gmail.com> - 0.6-4
|
|
||||||
- Add python2 and python3 subpackages
|
|
||||||
|
|
||||||
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Dec 15 2014 Matthias Runge <mrunge@redhat.com> - 0.6-2
|
|
||||||
- change BR python-devel to python2-devel (rhbz#1173109)
|
|
||||||
|
|
||||||
* Thu Dec 11 2014 Matthias Runge <mrunge@redhat.com> - 0.6-1
|
|
||||||
- Initial package.
|
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
SHA512 (Pint-0.16.1.tar.gz) = 7d18ff7a7e85ff98350347a487be62513b100e4adba701a8e5f27f6db89618931d0f62b67be42bda4af097f5f01830baa5a6b50a537924287214d0d954da5322
|
SHA512 (pint-0.24.4.tar.gz) = ff663d361d358cd21c856fef3cd35da3afb286fc173a4a3e13c926b312636d109ca0543eb46a1bf76a83381889643ae0eac1c0a986f57b2026d8f9d4d127d8d6
|
||||||
|
|||||||
Reference in New Issue
Block a user