Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-pytest-astropy for
openSUSE:Factory checked in at 2021-10-21 23:55:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pytest-astropy (Old)
and /work/SRC/openSUSE:Factory/.python-pytest-astropy.new.1890 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pytest-astropy"
Thu Oct 21 23:55:14 2021 rev:6 rq:926350 version:0.9.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-pytest-astropy/python-pytest-astropy.changes
2021-06-01 10:39:06.616981446 +0200
+++
/work/SRC/openSUSE:Factory/.python-pytest-astropy.new.1890/python-pytest-astropy.changes
2021-10-21 23:55:16.252017601 +0200
@@ -1,0 +2,9 @@
+Sun Oct 17 13:13:41 UTC 2021 - Ben Greiner <[email protected]>
+
+- Update to 0.9:
+ * Added ``pytest-mock`` as dependency. [#31]
+ * Require ``pytest-cov`` 2.3.1 or later. [#41]
+ * Require ``pytest-doctestplus`` 0.11.0 or later. [#43]
+ * Dropped support for Python 3.6. [#43]
+
+-------------------------------------------------------------------
Old:
----
pytest-astropy-0.8.0.tar.gz
New:
----
pytest-astropy-0.9.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-pytest-astropy.spec ++++++
--- /var/tmp/diff_new_pack.xwdk9g/_old 2021-10-21 23:55:16.648017806 +0200
+++ /var/tmp/diff_new_pack.xwdk9g/_new 2021-10-21 23:55:16.648017806 +0200
@@ -20,23 +20,25 @@
%define skip_python36 1
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-pytest-astropy
-Version: 0.8.0
+Version: 0.9.0
Release: 0
Summary: Meta-package containing dependencies for testing
License: BSD-3-Clause
URL: https://github.com/astropy/pytest-astropy
Source:
https://files.pythonhosted.org/packages/source/p/pytest-astropy/pytest-astropy-%{version}.tar.gz
-BuildRequires: %{python_module setuptools >= 30.3.0}
BuildRequires: %{python_module setuptools_scm}
+BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
+Requires: python-attrs >= 19.2.0
Requires: python-hypothesis >= 5.1
Requires: python-pytest >= 4.6
Requires: python-pytest-arraydiff >= 0.1
Requires: python-pytest-astropy-header >= 0.1.2
-Requires: python-pytest-cov >= 2.0
-Requires: python-pytest-doctestplus >= 0.2.0
+Requires: python-pytest-cov >= 2.3.1
+Requires: python-pytest-doctestplus >= 0.11.0
Requires: python-pytest-filter-subpackage >= 0.1
+Requires: python-pytest-mock >= 2.0
Requires: python-pytest-openfiles >= 0.3.1
Requires: python-pytest-remotedata >= 0.3.1
BuildArch: noarch
++++++ pytest-astropy-0.8.0.tar.gz -> pytest-astropy-0.9.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pytest-astropy-0.8.0/.github/workflows/publish.yml
new/pytest-astropy-0.9.0/.github/workflows/publish.yml
--- old/pytest-astropy-0.8.0/.github/workflows/publish.yml 1970-01-01
01:00:00.000000000 +0100
+++ new/pytest-astropy-0.9.0/.github/workflows/publish.yml 2021-09-21
17:28:00.000000000 +0200
@@ -0,0 +1,46 @@
+name: Release
+
+on:
+ pull_request:
+ push:
+ tags:
+ - '*'
+
+jobs:
+ build-n-publish:
+ name: Build and publish Python ???? distributions ???? to PyPI
+ runs-on: ubuntu-latest
+ if: ((github.event_name == 'push' && startsWith(github.ref, 'refs/tags'))
|| contains(github.event.pull_request.labels.*.name, 'Build wheels'))
+
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+ - uses: actions/setup-python@v2
+ with:
+ python-version: 3.8
+
+ - name: Install python-build and twine
+ run: python -m pip install build "twine>=3.3"
+
+ - name: Build package
+ run: python -m build --sdist --wheel .
+
+ - name: List result
+ run: ls -l dist
+
+ - name: Check long_description
+ run: python -m twine check --strict dist/*
+
+ #- name: Test package
+ # run: |
+ # cd ..
+ # python -m venv testenv
+ # testenv/bin/pip install pytest pytest-astropy/dist/*.whl
+
+ - name: Publish distribution ???? to PyPI
+ if: startsWith(github.ref, 'refs/tags')
+ uses: pypa/gh-action-pypi-publish@release/v1
+ with:
+ user: __token__
+ password: ${{ secrets.pypi_password }}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pytest-astropy-0.8.0/CHANGES.rst
new/pytest-astropy-0.9.0/CHANGES.rst
--- old/pytest-astropy-0.8.0/CHANGES.rst 2020-01-16 11:23:05.000000000
+0100
+++ new/pytest-astropy-0.9.0/CHANGES.rst 2021-09-21 18:22:16.000000000
+0200
@@ -1,3 +1,14 @@
+0.9.0 (2021-09-21)
+==================
+
+- Added ``pytest-mock`` as dependency. [#31]
+
+- Require ``pytest-cov`` 2.3.1 or later. [#41]
+
+- Require ``pytest-doctestplus`` 0.11.0 or later. [#43]
+
+- Dropped support for Python 3.6. [#43]
+
0.8.0 (2020-01-16)
==================
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pytest-astropy-0.8.0/LICENSE.rst
new/pytest-astropy-0.9.0/LICENSE.rst
--- old/pytest-astropy-0.8.0/LICENSE.rst 2019-03-08 11:52:14.000000000
+0100
+++ new/pytest-astropy-0.9.0/LICENSE.rst 2021-09-21 17:28:00.000000000
+0200
@@ -1,4 +1,4 @@
-Copyright (c) 2011-2017, Astropy Developers
+Copyright (c) 2011-2021, Astropy Developers
All rights reserved.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pytest-astropy-0.8.0/PKG-INFO
new/pytest-astropy-0.9.0/PKG-INFO
--- old/pytest-astropy-0.8.0/PKG-INFO 2020-01-16 11:26:17.401408400 +0100
+++ new/pytest-astropy-0.9.0/PKG-INFO 2021-09-21 18:29:16.780000000 +0200
@@ -1,81 +1,11 @@
-Metadata-Version: 1.2
+Metadata-Version: 2.1
Name: pytest-astropy
-Version: 0.8.0
+Version: 0.9.0
Summary: Meta-package containing dependencies for testing
Home-page: https://github.com/astropy/pytest-astropy
Author: The Astropy Developers
Author-email: [email protected]
License: BSD
-Description: ==============
- pytest-astropy
- ==============
-
- This is a meta-package that pulls in the dependencies that are used by
- `astropy`_ and some `affiliated packages`_ for testing. It can also be
used for
- testing packages that are not affiliated with the Astropy project.
-
- .. _astropy: https://docs.astropy.org/en/latest/
- .. _affiliated packages: https://astropy.org/affiliated
-
- Dependencies
- ------------
-
- The following dependencies are installed by this package:
-
- * The `pytest`_ testing framework for Python
- * `pytest-astropy-header`_, a ``pytest`` plugin used for custom test
header
- * `pytest-remotedata`_, a ``pytest`` plugin used for controlling
access to data
- files hosted online
- * `pytest-doctestplus`_, a ``pytest`` plugin that provides advanced
features
- for testing example code in documentation
- * `pytest-openfiles`_, a ``pytest`` plugin for detecting file handles
that were
- inadvertently left open at the end of unit tests
- * `pytest-arraydiff`_, a ``pytest`` plugin that enables the generation
and
- comparison of data arrays produced during unit tests
- * `pytest-filter-subpackage`_, a ``pytest`` plugin that adds a ``-P``
option to
- pytest to filter by sub-package.
- * `pytest-cov`_, a ``pytest`` plugin to measure test coverage.
- * `hypothesis`_, a Python library for property based testing.
-
- .. _pytest: https://doc.pytest.org
- .. _pytest-astropy-header:
https://github.com/astropy/pytest-astropy-header
- .. _pytest-remotedata: https://github.com/astropy/pytest-remotedata
- .. _pytest-doctestplus: https://github.com/astropy/pytest-doctestplus
- .. _pytest-openfiles: https://github.com/astropy/pytest-openfiles
- .. _pytest-arraydiff: https://github.com/astropy/pytest-arraydiff
- .. _pytest-filter-subpackage:
https://github.com/astropy/pytest-filter-subpackage
- .. _pytest-cov: https://github.com/pytest-dev/pytest-cov
- .. _hypothesis: https://hypothesis.readthedocs.io
-
- Installation
- ------------
-
- The ``pytest-astropy`` plugin can be installed using ``pip``::
-
- $ pip install pytest-astropy
-
- It is also possible to install the latest development version from the
source
- repository::
-
- $ git clone https://github.com/astropy/pytest-astropy
- $ cd pytest-astropy
- $ python ./setup.py install
-
- In either case, the plugin will automatically be registered for use
with
- ``pytest``.
-
- Development Status
- ------------------
-
- Questions, bug reports, and feature requests can be submitted on
`github`_.
-
- .. _github: https://github.com/astropy/pytest-astropy
-
- License
- -------
- This package is licensed under a 3-clause BSD style license - see the
- ``LICENSE.rst`` file.
-
Keywords: pytest,remotedata,openfiles,doctestplus,hypothesis,property-based
testing
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
@@ -87,10 +17,85 @@
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
-Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Utilities
-Requires-Python: >=3.6
+Requires-Python: >=3.7
+License-File: LICENSE.rst
+
+==============
+pytest-astropy
+==============
+
+This is a meta-package that pulls in the dependencies that are used by
+`astropy`_ and some `affiliated packages`_ for testing. It can also be used for
+testing packages that are not affiliated with the Astropy project.
+
+.. _astropy: https://docs.astropy.org/en/latest/
+.. _affiliated packages: https://astropy.org/affiliated
+
+Dependencies
+------------
+
+The following dependencies are installed by this package:
+
+* The `pytest`_ testing framework for Python.
+* `pytest-astropy-header`_, a ``pytest`` plugin used for custom test header.
+* `pytest-remotedata`_, a ``pytest`` plugin used for controlling access to data
+ files hosted online.
+* `pytest-doctestplus`_, a ``pytest`` plugin that provides advanced features
+ for testing example code in documentation.
+* `pytest-openfiles`_, a ``pytest`` plugin for detecting file handles that were
+ inadvertently left open at the end of unit tests.
+* `pytest-arraydiff`_, a ``pytest`` plugin that enables the generation and
+ comparison of data arrays produced during unit tests.
+* `pytest-filter-subpackage`_, a ``pytest`` plugin that adds a ``-P`` option to
+ pytest to filter by sub-package.
+* `pytest-mock`_, a thin-wrapper around the mock package for easier use
+ with ``pytest``.
+* `pytest-cov`_, a ``pytest`` plugin to measure test coverage.
+* `hypothesis`_, a Python library for property based testing.
+
+.. _pytest: https://doc.pytest.org
+.. _pytest-astropy-header: https://github.com/astropy/pytest-astropy-header
+.. _pytest-remotedata: https://github.com/astropy/pytest-remotedata
+.. _pytest-doctestplus: https://github.com/astropy/pytest-doctestplus
+.. _pytest-openfiles: https://github.com/astropy/pytest-openfiles
+.. _pytest-arraydiff: https://github.com/astropy/pytest-arraydiff
+.. _pytest-filter-subpackage:
https://github.com/astropy/pytest-filter-subpackage
+.. _pytest-mock: https://github.com/pytest-dev/pytest-mock
+.. _pytest-cov: https://github.com/pytest-dev/pytest-cov
+.. _hypothesis: https://hypothesis.readthedocs.io
+
+Installation
+------------
+
+The ``pytest-astropy`` plugin can be installed using ``pip``::
+
+ $ pip install pytest-astropy
+
+It is also possible to install the latest development version from the source
+repository::
+
+ $ git clone https://github.com/astropy/pytest-astropy
+ $ cd pytest-astropy
+ $ python ./setup.py install
+
+In either case, the plugin will automatically be registered for use with
+``pytest``.
+
+Development Status
+------------------
+
+Questions, bug reports, and feature requests can be submitted on `github`_.
+
+.. _github: https://github.com/astropy/pytest-astropy
+
+License
+-------
+This package is licensed under a 3-clause BSD style license - see the
+``LICENSE.rst`` file.
+
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pytest-astropy-0.8.0/README.rst
new/pytest-astropy-0.9.0/README.rst
--- old/pytest-astropy-0.8.0/README.rst 2020-01-16 11:21:34.000000000 +0100
+++ new/pytest-astropy-0.9.0/README.rst 2021-09-20 23:35:47.000000000 +0200
@@ -14,18 +14,20 @@
The following dependencies are installed by this package:
-* The `pytest`_ testing framework for Python
-* `pytest-astropy-header`_, a ``pytest`` plugin used for custom test header
+* The `pytest`_ testing framework for Python.
+* `pytest-astropy-header`_, a ``pytest`` plugin used for custom test header.
* `pytest-remotedata`_, a ``pytest`` plugin used for controlling access to data
- files hosted online
+ files hosted online.
* `pytest-doctestplus`_, a ``pytest`` plugin that provides advanced features
- for testing example code in documentation
+ for testing example code in documentation.
* `pytest-openfiles`_, a ``pytest`` plugin for detecting file handles that were
- inadvertently left open at the end of unit tests
+ inadvertently left open at the end of unit tests.
* `pytest-arraydiff`_, a ``pytest`` plugin that enables the generation and
- comparison of data arrays produced during unit tests
+ comparison of data arrays produced during unit tests.
* `pytest-filter-subpackage`_, a ``pytest`` plugin that adds a ``-P`` option to
pytest to filter by sub-package.
+* `pytest-mock`_, a thin-wrapper around the mock package for easier use
+ with ``pytest``.
* `pytest-cov`_, a ``pytest`` plugin to measure test coverage.
* `hypothesis`_, a Python library for property based testing.
@@ -36,6 +38,7 @@
.. _pytest-openfiles: https://github.com/astropy/pytest-openfiles
.. _pytest-arraydiff: https://github.com/astropy/pytest-arraydiff
.. _pytest-filter-subpackage:
https://github.com/astropy/pytest-filter-subpackage
+.. _pytest-mock: https://github.com/pytest-dev/pytest-mock
.. _pytest-cov: https://github.com/pytest-dev/pytest-cov
.. _hypothesis: https://hypothesis.readthedocs.io
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/pytest-astropy-0.8.0/pytest_astropy.egg-info/PKG-INFO
new/pytest-astropy-0.9.0/pytest_astropy.egg-info/PKG-INFO
--- old/pytest-astropy-0.8.0/pytest_astropy.egg-info/PKG-INFO 2020-01-16
11:26:17.000000000 +0100
+++ new/pytest-astropy-0.9.0/pytest_astropy.egg-info/PKG-INFO 2021-09-21
18:29:16.000000000 +0200
@@ -1,81 +1,11 @@
-Metadata-Version: 1.2
+Metadata-Version: 2.1
Name: pytest-astropy
-Version: 0.8.0
+Version: 0.9.0
Summary: Meta-package containing dependencies for testing
Home-page: https://github.com/astropy/pytest-astropy
Author: The Astropy Developers
Author-email: [email protected]
License: BSD
-Description: ==============
- pytest-astropy
- ==============
-
- This is a meta-package that pulls in the dependencies that are used by
- `astropy`_ and some `affiliated packages`_ for testing. It can also be
used for
- testing packages that are not affiliated with the Astropy project.
-
- .. _astropy: https://docs.astropy.org/en/latest/
- .. _affiliated packages: https://astropy.org/affiliated
-
- Dependencies
- ------------
-
- The following dependencies are installed by this package:
-
- * The `pytest`_ testing framework for Python
- * `pytest-astropy-header`_, a ``pytest`` plugin used for custom test
header
- * `pytest-remotedata`_, a ``pytest`` plugin used for controlling
access to data
- files hosted online
- * `pytest-doctestplus`_, a ``pytest`` plugin that provides advanced
features
- for testing example code in documentation
- * `pytest-openfiles`_, a ``pytest`` plugin for detecting file handles
that were
- inadvertently left open at the end of unit tests
- * `pytest-arraydiff`_, a ``pytest`` plugin that enables the generation
and
- comparison of data arrays produced during unit tests
- * `pytest-filter-subpackage`_, a ``pytest`` plugin that adds a ``-P``
option to
- pytest to filter by sub-package.
- * `pytest-cov`_, a ``pytest`` plugin to measure test coverage.
- * `hypothesis`_, a Python library for property based testing.
-
- .. _pytest: https://doc.pytest.org
- .. _pytest-astropy-header:
https://github.com/astropy/pytest-astropy-header
- .. _pytest-remotedata: https://github.com/astropy/pytest-remotedata
- .. _pytest-doctestplus: https://github.com/astropy/pytest-doctestplus
- .. _pytest-openfiles: https://github.com/astropy/pytest-openfiles
- .. _pytest-arraydiff: https://github.com/astropy/pytest-arraydiff
- .. _pytest-filter-subpackage:
https://github.com/astropy/pytest-filter-subpackage
- .. _pytest-cov: https://github.com/pytest-dev/pytest-cov
- .. _hypothesis: https://hypothesis.readthedocs.io
-
- Installation
- ------------
-
- The ``pytest-astropy`` plugin can be installed using ``pip``::
-
- $ pip install pytest-astropy
-
- It is also possible to install the latest development version from the
source
- repository::
-
- $ git clone https://github.com/astropy/pytest-astropy
- $ cd pytest-astropy
- $ python ./setup.py install
-
- In either case, the plugin will automatically be registered for use
with
- ``pytest``.
-
- Development Status
- ------------------
-
- Questions, bug reports, and feature requests can be submitted on
`github`_.
-
- .. _github: https://github.com/astropy/pytest-astropy
-
- License
- -------
- This package is licensed under a 3-clause BSD style license - see the
- ``LICENSE.rst`` file.
-
Keywords: pytest,remotedata,openfiles,doctestplus,hypothesis,property-based
testing
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
@@ -87,10 +17,85 @@
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
-Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Utilities
-Requires-Python: >=3.6
+Requires-Python: >=3.7
+License-File: LICENSE.rst
+
+==============
+pytest-astropy
+==============
+
+This is a meta-package that pulls in the dependencies that are used by
+`astropy`_ and some `affiliated packages`_ for testing. It can also be used for
+testing packages that are not affiliated with the Astropy project.
+
+.. _astropy: https://docs.astropy.org/en/latest/
+.. _affiliated packages: https://astropy.org/affiliated
+
+Dependencies
+------------
+
+The following dependencies are installed by this package:
+
+* The `pytest`_ testing framework for Python.
+* `pytest-astropy-header`_, a ``pytest`` plugin used for custom test header.
+* `pytest-remotedata`_, a ``pytest`` plugin used for controlling access to data
+ files hosted online.
+* `pytest-doctestplus`_, a ``pytest`` plugin that provides advanced features
+ for testing example code in documentation.
+* `pytest-openfiles`_, a ``pytest`` plugin for detecting file handles that were
+ inadvertently left open at the end of unit tests.
+* `pytest-arraydiff`_, a ``pytest`` plugin that enables the generation and
+ comparison of data arrays produced during unit tests.
+* `pytest-filter-subpackage`_, a ``pytest`` plugin that adds a ``-P`` option to
+ pytest to filter by sub-package.
+* `pytest-mock`_, a thin-wrapper around the mock package for easier use
+ with ``pytest``.
+* `pytest-cov`_, a ``pytest`` plugin to measure test coverage.
+* `hypothesis`_, a Python library for property based testing.
+
+.. _pytest: https://doc.pytest.org
+.. _pytest-astropy-header: https://github.com/astropy/pytest-astropy-header
+.. _pytest-remotedata: https://github.com/astropy/pytest-remotedata
+.. _pytest-doctestplus: https://github.com/astropy/pytest-doctestplus
+.. _pytest-openfiles: https://github.com/astropy/pytest-openfiles
+.. _pytest-arraydiff: https://github.com/astropy/pytest-arraydiff
+.. _pytest-filter-subpackage:
https://github.com/astropy/pytest-filter-subpackage
+.. _pytest-mock: https://github.com/pytest-dev/pytest-mock
+.. _pytest-cov: https://github.com/pytest-dev/pytest-cov
+.. _hypothesis: https://hypothesis.readthedocs.io
+
+Installation
+------------
+
+The ``pytest-astropy`` plugin can be installed using ``pip``::
+
+ $ pip install pytest-astropy
+
+It is also possible to install the latest development version from the source
+repository::
+
+ $ git clone https://github.com/astropy/pytest-astropy
+ $ cd pytest-astropy
+ $ python ./setup.py install
+
+In either case, the plugin will automatically be registered for use with
+``pytest``.
+
+Development Status
+------------------
+
+Questions, bug reports, and feature requests can be submitted on `github`_.
+
+.. _github: https://github.com/astropy/pytest-astropy
+
+License
+-------
+This package is licensed under a 3-clause BSD style license - see the
+``LICENSE.rst`` file.
+
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/pytest-astropy-0.8.0/pytest_astropy.egg-info/SOURCES.txt
new/pytest-astropy-0.9.0/pytest_astropy.egg-info/SOURCES.txt
--- old/pytest-astropy-0.8.0/pytest_astropy.egg-info/SOURCES.txt
2020-01-16 11:26:17.000000000 +0100
+++ new/pytest-astropy-0.9.0/pytest_astropy.egg-info/SOURCES.txt
2021-09-21 18:29:16.000000000 +0200
@@ -5,6 +5,7 @@
README.rst
setup.cfg
setup.py
+.github/workflows/publish.yml
pytest_astropy.egg-info/PKG-INFO
pytest_astropy.egg-info/SOURCES.txt
pytest_astropy.egg-info/dependency_links.txt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/pytest-astropy-0.8.0/pytest_astropy.egg-info/requires.txt
new/pytest-astropy-0.9.0/pytest_astropy.egg-info/requires.txt
--- old/pytest-astropy-0.8.0/pytest_astropy.egg-info/requires.txt
2020-01-16 11:26:17.000000000 +0100
+++ new/pytest-astropy-0.9.0/pytest_astropy.egg-info/requires.txt
2021-09-21 18:29:16.000000000 +0200
@@ -1,9 +1,11 @@
pytest>=4.6
-pytest-doctestplus>=0.2.0
+pytest-doctestplus>=0.11.0
pytest-remotedata>=0.3.1
pytest-openfiles>=0.3.1
pytest-astropy-header>=0.1.2
pytest-arraydiff>=0.1
pytest-filter-subpackage>=0.1
-pytest-cov>=2.0
+pytest-cov>=2.3.1
+pytest-mock>=2.0
+attrs>=19.2.0
hypothesis>=5.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pytest-astropy-0.8.0/setup.cfg
new/pytest-astropy-0.9.0/setup.cfg
--- old/pytest-astropy-0.8.0/setup.cfg 2020-01-16 11:26:17.402865400 +0100
+++ new/pytest-astropy-0.9.0/setup.cfg 2021-09-21 18:29:16.780000000 +0200
@@ -13,7 +13,6 @@
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
- Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: Implementation :: CPython
@@ -27,17 +26,19 @@
[options]
zip_safe = False
packages = find:
-python_requires = >=3.6
+python_requires = >=3.7
setup_requires = setuptools_scm
install_requires =
pytest>=4.6
- pytest-doctestplus>=0.2.0
+ pytest-doctestplus>=0.11.0
pytest-remotedata>=0.3.1
pytest-openfiles>=0.3.1
pytest-astropy-header>=0.1.2
pytest-arraydiff>=0.1
pytest-filter-subpackage>=0.1
- pytest-cov>=2.0
+ pytest-cov>=2.3.1
+ pytest-mock>=2.0
+ attrs>=19.2.0
hypothesis>=5.1
[egg_info]