Compare commits

..

18 Commits

Author SHA1 Message Date
Fedora Release Engineering c0418e8752 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2022-01-21 13:49:13 +00:00
Fedora Release Engineering 007105faba - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2021-07-23 07:53:06 +00:00
Python Maint c2719d6680 Rebuilt for Python 3.10 2021-06-04 19:05:17 +02:00
Fedora Release Engineering 02723af547 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2021-01-27 12:00:44 +00:00
Miro Hrončok cb7ef5c476 Don't BR pytest-cov 2020-11-14 00:50:33 +01:00
Lumir Balhar c1bf4a9e62 Update to 1.1.0 (#1701764) & switch to pyproject macros 2020-09-10 11:14:10 +02:00
Fedora Release Engineering c72a899ad8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2020-07-29 02:28:36 +00:00
Miro Hrončok 0e2b210feb Replace Python version glob with macro (needed for Python 3.10+)
See https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/thread/PQIGCQCRNBYNXBX2ICWEM3PLDLNOG2ZT/

Co-authored-by: Tomas Hrnciar <thrnciar@redhat.com>
2020-07-13 21:04:35 +02:00
Miro Hrončok 680cb109e5 Rebuilt for Python 3.9 2020-05-26 01:13:43 +02:00
Orion Poplawski d3140f4c58 Add upstream patch for python 3.9 compatibility 2020-05-07 19:25:24 -06:00
Fedora Release Engineering c05de8fbba - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2020-01-30 13:43:55 +00:00
Orion Poplawski 33ce2adaea Update to 0.9.2 2019-12-27 19:34:37 -07:00
Miro Hrončok 13d75e3e14 Rebuilt for Python 3.8.0rc1 (#1748018) 2019-10-03 14:20:50 +02:00
Miro Hrončok 4e58d8eb6c Rebuilt for Python 3.8 2019-08-19 10:47:44 +02:00
Fedora Release Engineering e362e5f3d0 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2019-07-26 14:52:19 +00:00
Orion Poplawski 6a6b00e36a Add BR on pytest 2019-05-07 21:20:17 -06:00
Orion Poplawski e223be063c Update to 0.9.1 2019-05-07 21:12:18 -06:00
Miro Hrončok 5ee584c0d1 Subpackage python2-numpydoc has been removed 2019-03-06 15:48:25 +01:00
4 changed files with 84 additions and 43 deletions
+3
View File
@@ -3,3 +3,6 @@
/numpydoc-0.7.0.tar.gz
/python-numpydoc-0.8.0-1.fc27.src.rpm
/numpydoc-0.8.0.tar.gz
/numpydoc-0.9.1.tar.gz
/numpydoc-0.9.2.tar.gz
/numpydoc-1.1.0.tar.gz
+13
View File
@@ -0,0 +1,13 @@
diff --git a/setup.cfg b/setup.cfg
index 420fc78..1e9d2d6 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,7 +1,7 @@
[tool:pytest]
addopts =
--showlocals --doctest-modules -ra --cov-report= --cov=numpydoc
- --junit-xml=junit-results.xml --ignore=doc/conf.py
+ --junit-xml=junit-results.xml --ignore=doc/
junit_family = xunit2
filterwarnings =
ignore:'U' mode is deprecated:DeprecationWarning
+67 -42
View File
@@ -1,81 +1,106 @@
Name: python-numpydoc
Version: 0.8.0
Release: 4%{?dist}
Version: 1.1.0
Release: 6%{?dist}
Summary: Sphinx extension to support docstrings in NumPy format
License: BSD
URL: https://pypi.python.org/pypi/numpydoc
Source0: https://files.pythonhosted.org/packages/source/n/numpydoc/numpydoc-%{version}.tar.gz
# Upstream patch to ignore doc/ directory during tests
Patch0: https://github.com/numpy/numpydoc/pull/296.patch
BuildArch: noarch
BuildRequires: python2-devel
BuildRequires: python2-setuptools
BuildRequires: python2-nose
BuildRequires: python2-sphinx
BuildRequires: python2-matplotlib
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-nose
BuildRequires: python3-sphinx
BuildRequires: python3-matplotlib
BuildRequires: pyproject-rpm-macros
%description
Numpydoc inserts a hook into Sphinx's autodoc that converts docstrings
following the NumPy/SciPy format to a form palatable to Sphinx.
%package -n python2-numpydoc
Summary: %{summary}
%{?python_provide:%python_provide python2-numpydoc}
Requires: python2-sphinx >= 1.2.3
Requires: python2-jinja2 >= 2.3
%description -n python2-numpydoc
Numpydoc inserts a hook into Sphinx's autodoc that converts docstrings
following the NumPy/SciPy format to a form palatable to Sphinx.
%package -n python3-numpydoc
Summary: %{summary}
%{?python_provide:%python_provide python3-numpydoc}
Requires: python3-sphinx >= 1.2.3
Requires: python3-jinja2 >= 2.3
%description -n python3-numpydoc
Numpydoc inserts a hook into Sphinx's autodoc that converts docstrings
following the NumPy/SciPy format to a form palatable to Sphinx.
%prep
%autosetup -n numpydoc-%{version}
%autosetup -p1 -n numpydoc-%{version}
# let's not measure coverage:
sed -i '/pytest-cov/d' test_requirements.txt
sed -Ei 's/\s+--cov\S+//g' setup.cfg
%generate_buildrequires
%pyproject_buildrequires -x testing
%build
%py2_build
%py3_build
%pyproject_wheel
%install
%py2_install
%py3_install
%pyproject_install
%pyproject_save_files numpydoc
%check
nosetests -v
nosetests-3 -v
# Deselected tests need to download an inventory from docs.python.org
%pytest -k "not test_MyClass and not test_my_function"
%files -n python2-numpydoc
%files -n python3-numpydoc -f %pyproject_files
%license LICENSE.txt
%doc README.rst
%{python2_sitelib}/numpydoc
%{python2_sitelib}/numpydoc-%{version}-py?.?.egg-info
%files -n python3-numpydoc
%license LICENSE.txt
%doc README.rst
%{python3_sitelib}/numpydoc
%{python3_sitelib}/numpydoc-%{version}-py?.?.egg-info
%changelog
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 1.1.0-4
- Rebuilt for Python 3.10
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Fri Nov 13 2020 Miro Hrončok <mhroncok@redhat.com> - 1.1.0-2
- Don't BR pytest-cov
* Wed Sep 09 2020 Lumír Balhar <lbalhar@redhat.com> - 1.1.0-1
- Update to 1.1.0 (#1701764)
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.2-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Mon May 25 2020 Miro Hrončok <mhroncok@redhat.com> - 0.9.2-4
- Rebuilt for Python 3.9
* Fri May 08 2020 Orion Poplawski <orion@nwra.com> - 0.9.2-3
- Add upstream patch for python 3.9 compatibility
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Sat Dec 28 2019 Orion Poplawski <orion@nwra.com> - 0.9.2-1
- Update to 0.9.2
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.9.1-4
- Rebuilt for Python 3.8.0rc1 (#1748018)
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.9.1-3
- Rebuilt for Python 3.8
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Tue May 7 2019 Orion Poplawski <orion@nwra.com> - 0.9.1-1
- Update to 0.9.1
* Wed Mar 06 2019 Miro Hrončok <mhroncok@redhat.com> - 0.8.0-5
- Subpackage python2-numpydoc has been removed
See https://fedoraproject.org/wiki/Changes/Sphinx2
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.0-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
+1 -1
View File
@@ -1 +1 @@
SHA512 (numpydoc-0.8.0.tar.gz) = 8302c7eb6518b46823655ff26776beae35011c9842b6ed61d1db3f7ffd1f34ec695ffde0f0be91152ad59510a5904445ed6dcd877f9b1fb520adc8d9f895635d
SHA512 (numpydoc-1.1.0.tar.gz) = 10dfc5e40ca851401be7d7cca3cbf24bf8ded8573c01344976321cd65fe351d985ee0bf48a92a485a43f8fb191c246e4822545a1583c87c1214d819a5fdfc106