Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ee8b0fdc70 | ||
|
|
eb667ff04c | ||
|
|
b20c555636 | ||
|
|
b4cf5d68e2 | ||
|
|
f1b5b2ff9d | ||
|
|
a9395bff1f | ||
|
|
da0cb6424f | ||
|
|
d64a1411e3 | ||
|
|
39976c49c1 | ||
|
|
3e4151e82d | ||
|
|
e0b5185c1a | ||
|
|
60b5b1f1f7 | ||
|
|
d201d7af72 | ||
|
|
b85f62ca26 | ||
|
|
b89bc15971 | ||
|
|
b746efccb6 | ||
|
|
bc028d9d9a | ||
|
|
b1471f002d | ||
|
|
169859e87e | ||
|
|
ce2253678e | ||
|
|
f9edd0d570 | ||
|
|
c41b0ea281 | ||
|
|
ff9d840b3e | ||
|
|
7d427a6440 |
@@ -1 +1,6 @@
|
|||||||
/Pint-0.6.zip
|
/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
|
||||||
|
|||||||
@@ -0,0 +1,59 @@
|
|||||||
|
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):
|
||||||
|
|
||||||
+102
-81
@@ -1,21 +1,17 @@
|
|||||||
%global pypi_name Pint
|
%global pypi_name Pint
|
||||||
|
%bcond_with docs
|
||||||
|
|
||||||
%if 0%{?fedora}
|
|
||||||
%global with_python3 1
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%{!?upstream_version: %global upstream_version %{version}%{?milestone}}
|
|
||||||
|
|
||||||
Name: python-pint
|
Name: python-pint
|
||||||
Version: 0.6
|
Version: 0.16.1
|
||||||
Release: 11%{?dist}
|
Release: 5%{?dist}
|
||||||
Summary: Physical quantities module
|
Summary: Physical quantities module
|
||||||
|
|
||||||
License: BSD
|
License: BSD
|
||||||
URL: https://github.com/hgrecco/pint
|
URL: https://github.com/hgrecco/pint
|
||||||
Source0: https://pypi.python.org/packages/source/P/%{pypi_name}/%{pypi_name}-%{version}.zip
|
Source0: %pypi_source
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
BuildRequires: pyproject-rpm-macros
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Pint is Python module/package to define, operate and manipulate physical
|
Pint is Python module/package to define, operate and manipulate physical
|
||||||
@@ -26,46 +22,12 @@ 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 constants.
|
and constants.
|
||||||
|
|
||||||
%package -n python2-pint
|
|
||||||
Summary: Physical quantities module
|
|
||||||
Provides: python-pint = %{version}-%{release}
|
|
||||||
Obsoletes: python-pint < 0.6-4
|
|
||||||
|
|
||||||
BuildRequires: python2-devel
|
|
||||||
BuildRequires: python-sphinx
|
|
||||||
BuildRequires: python-setuptools
|
|
||||||
|
|
||||||
# python_provide does not exist in CBS Cloud buildroot
|
|
||||||
%{?python_provide:%python_provide python2-pint}
|
|
||||||
|
|
||||||
%description -n python2-pint
|
|
||||||
Pint is Python module/package to define, operate and manipulate physical
|
|
||||||
quantities: the product of a numerical value and a unit of measurement.
|
|
||||||
It allows arithmetic operations between them and conversions from and
|
|
||||||
to different units.
|
|
||||||
|
|
||||||
It is distributed with a comprehensive list of physical units, prefixes
|
|
||||||
and constants.
|
|
||||||
|
|
||||||
%package -n python2-pint-doc
|
|
||||||
Summary: Documentation for the pint module
|
|
||||||
%{?python_provide:%python_provide python2-pint-doc}
|
|
||||||
# python_provide does not exist in CBS Cloud buildroot
|
|
||||||
Provides: python-pint-doc = %{version}-%{release}
|
|
||||||
Obsoletes: python-pint-doc < 0.6-4
|
|
||||||
|
|
||||||
%description -n python2-pint-doc
|
|
||||||
Documentation for the pint module
|
|
||||||
|
|
||||||
#python3 subpackage
|
|
||||||
%if 0%{?with_python3}
|
|
||||||
%package -n python3-pint
|
%package -n python3-pint
|
||||||
Summary: Physical quantities module
|
Summary: Physical quantities module
|
||||||
%{?python_provide:%python_provide python3-pint}
|
%{?python_provide:%python_provide python3-pint}
|
||||||
|
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-numpy
|
||||||
BuildRequires: python3-sphinx
|
BuildRequires: python3-pytest
|
||||||
BuildRequires: python3-setuptools
|
|
||||||
|
|
||||||
%description -n python3-pint
|
%description -n python3-pint
|
||||||
Pint is Python module/package to define, operate and manipulate physical
|
Pint is Python module/package to define, operate and manipulate physical
|
||||||
@@ -75,13 +37,23 @@ 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 constants.
|
and constants.
|
||||||
%endif
|
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
%if %{with docs}
|
||||||
%package -n python3-pint-doc
|
%package -n python3-pint-doc
|
||||||
Summary: Documentation for the pint module
|
Summary: Documentation for the pint module
|
||||||
%{?python_provide:%python_provide python3-pint-doc}
|
%{?python_provide:%python_provide python3-pint-doc}
|
||||||
|
|
||||||
|
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-sphinx
|
||||||
|
BuildRequires: python3-xarray
|
||||||
|
|
||||||
%description -n python3-pint-doc
|
%description -n python3-pint-doc
|
||||||
Documentation for the pint module
|
Documentation for the pint module
|
||||||
@@ -90,61 +62,110 @@ Documentation for the pint module
|
|||||||
%prep
|
%prep
|
||||||
%setup -q -n %{pypi_name}-%{version}
|
%setup -q -n %{pypi_name}-%{version}
|
||||||
|
|
||||||
|
# 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
|
%build
|
||||||
%{__python2} setup.py build
|
%pyproject_wheel
|
||||||
|
|
||||||
# generate html docs
|
%if %{with docs}
|
||||||
|
|
||||||
export PYTHONPATH="$( pwd ):$PYTHONPATH"
|
|
||||||
sphinx-build docs html
|
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
|
||||||
%{__python3} setup.py build
|
|
||||||
export PYTHONPATH="$( pwd ):$PYTHONPATH"
|
export PYTHONPATH="$( pwd ):$PYTHONPATH"
|
||||||
sphinx-build-3 docs html
|
sphinx-build-3 docs html
|
||||||
# remove the sphinx-build leftovers
|
# remove the sphinx-build leftovers
|
||||||
|
|
||||||
rm -rf html/.{doctrees,buildinfo}
|
rm -rf html/.{doctrees,buildinfo}
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%{__python2} setup.py install --skip-build --root %{buildroot}
|
%pyproject_install
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
|
||||||
%{__python3} setup.py install --skip-build --root %{buildroot}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%{__python2} setup.py test
|
%pytest
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
|
||||||
%{__python3} setup.py test
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%files -n python2-pint
|
|
||||||
%doc README
|
|
||||||
%license LICENSE
|
|
||||||
%{python2_sitelib}/pint
|
|
||||||
%{python2_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info
|
|
||||||
|
|
||||||
%files -n python2-pint-doc
|
|
||||||
%doc html
|
|
||||||
%license docs/_themes/LICENSE
|
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
|
||||||
%files -n python3-pint
|
%files -n python3-pint
|
||||||
%doc README
|
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
|
%{_bindir}/pint-convert
|
||||||
%{python3_sitelib}/pint
|
%{python3_sitelib}/pint
|
||||||
%{python3_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info
|
%{python3_sitelib}/Pint-%{version}.*
|
||||||
%endif
|
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
%if %{with docs}
|
||||||
%files -n python3-pint-doc
|
%files -n python3-pint-doc
|
||||||
%doc html
|
%doc html
|
||||||
%license docs/_themes/LICENSE
|
%license docs/_themes/LICENSE
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* 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
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6-11
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user