Skip to content

Commit 001bcd3

Browse files
committed
Updates python version in setup.py. Removes broken image link in README.
1 parent 3576e1a commit 001bcd3

File tree

2 files changed

+7
-12
lines changed

2 files changed

+7
-12
lines changed

README.rst

-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55

66
------------------------------------------------------------------------------
77

8-
.. image:: https://travis-ci.org/LCAV/pyroomacoustics.svg?branch=pypi-release
9-
:target: https://travis-ci.org/LCAV/pyroomacoustics
108
.. image:: https://readthedocs.org/projects/pyroomacoustics/badge/?version=pypi-release
119
:target: http://pyroomacoustics.readthedocs.io/en/pypi-release/
1210
:alt: Documentation Status

setup.py

+7-10
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@ def build_extensions(self):
188188
],
189189
cmdclass={"build_ext": BuildExt}, # taken from pybind11 example
190190
zip_safe=False,
191-
test_suite="nose.collector",
192-
tests_require=["nose"],
191+
test_suite="pytest",
192+
tests_require=["pytest"],
193193
classifiers=[
194194
# How mature is this project? Common values are
195195
# 3 - Alpha
@@ -207,14 +207,11 @@ def build_extensions(self):
207207
"License :: OSI Approved :: MIT License",
208208
# Specify the Python versions you support here. In particular, ensure
209209
# that you indicate whether you support Python 2, Python 3 or both.
210-
"Programming Language :: Python :: 2",
211-
"Programming Language :: Python :: 2.7",
212-
"Programming Language :: Python :: 3",
213-
#'Programming Language :: Python :: 3.3',
214-
#'Programming Language :: Python :: 3.4',
215-
"Programming Language :: Python :: 3.5",
216-
"Programming Language :: Python :: 3.6",
217-
"Programming Language :: Python :: 3.7",
210+
"Programming Language :: Python :: 3.8",
211+
"Programming Language :: Python :: 3.9",
212+
"Programming Language :: Python :: 3.10",
213+
"Programming Language :: Python :: 3.11",
214+
"Programming Language :: Python :: 3.12",
218215
],
219216
# What does your project relate to?
220217
keywords="room acoustics signal processing doa beamforming adaptive",

0 commit comments

Comments
 (0)