Skip to content

Commit 19ffcca

Browse files
authored
Remove unnecessary nose test dependency (#1638)
* ditch nose * whatsnew
1 parent 5b05914 commit 19ffcca

8 files changed

+4
-9
lines changed

ci/requirements-py3.10.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ dependencies:
88
- ephem
99
- h5py
1010
# - netcdf4 # pulls in a different version of numpy with ImportError
11-
- nose
1211
# - numba # python 3.9 compat in early 2021
1312
- numpy >= 1.16.0
1413
- pandas >= 0.25.0

ci/requirements-py3.7-min.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ channels:
33
- defaults
44
dependencies:
55
- coveralls
6-
- nose
76
- pip
87
- pytest
98
- pytest-cov

ci/requirements-py3.7.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ dependencies:
88
- ephem
99
- h5py
1010
- netcdf4
11-
- nose
1211
- numba
1312
- numpy >= 1.16.0
1413
- pandas >= 0.25.0

ci/requirements-py3.8.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ dependencies:
88
- ephem
99
- h5py
1010
- netcdf4
11-
- nose
1211
- numba
1312
- numpy >= 1.16.0
1413
- pandas >= 0.25.0

ci/requirements-py3.9.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ dependencies:
88
- ephem
99
- h5py
1010
# - netcdf4 # pulls in a different version of numpy with ImportError
11-
- nose
1211
# - numba # python 3.9 compat in early 2021
1312
- numpy >= 1.16.0
1413
- pandas >= 0.25.0

docs/sphinx/source/user_guide/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ referred to as *conda environments*, but they're the same for our purposes.
174174
``conda create --name pvlibdev python pandas scipy``
175175
#. **Activate** the new conda environment: ``conda activate pvlibdev``
176176
#. **Install** additional packages into your development environment:
177-
``conda install jupyter ipython matplotlib pytest nose flake8``
177+
``conda install jupyter ipython matplotlib pytest flake8``
178178

179179
The `conda documentation <https://conda.io/docs/index.html>`_ has more
180180
information on how to use conda virtual environments. You can also add

docs/sphinx/source/whatsnew/v0.9.5.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ v0.9.5 (anticipated March 2023)
55
-------------------------------
66

77
Starting with this version, new releases are no longer distributed through
8-
the ``pvlib`` `conda channel<https://anaconda.org/pvlib/pvlib>`_. We recommend
8+
the ``pvlib`` `conda channel <https://anaconda.org/pvlib/pvlib>`_. We recommend
99
``conda`` users install from the ``conda-forge`` channel instead (see
1010
:ref:`installation`).
1111

@@ -36,7 +36,7 @@ Benchmarking
3636

3737
Requirements
3838
~~~~~~~~~~~~
39-
39+
* Removed unnecessary ``nose`` test requirement (:pull:`1637`)
4040

4141
Contributors
4242
~~~~~~~~~~~~

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
'h5py',
4343
'importlib-metadata; python_version < "3.8"']
4444

45-
TESTS_REQUIRE = ['nose', 'pytest', 'pytest-cov', 'pytest-mock',
45+
TESTS_REQUIRE = ['pytest', 'pytest-cov', 'pytest-mock',
4646
'requests-mock', 'pytest-timeout', 'pytest-rerunfailures',
4747
'pytest-remotedata']
4848
EXTRAS_REQUIRE = {

0 commit comments

Comments
 (0)