Skip to content

Commit

Permalink
Updates python version in setup.py. Removes broken image link in README.
Browse files Browse the repository at this point in the history
  • Loading branch information
fakufaku committed Apr 23, 2024
1 parent 3576e1a commit 001bcd3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 12 deletions.
2 changes: 0 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@

------------------------------------------------------------------------------

.. image:: https://travis-ci.org/LCAV/pyroomacoustics.svg?branch=pypi-release
:target: https://travis-ci.org/LCAV/pyroomacoustics
.. image:: https://readthedocs.org/projects/pyroomacoustics/badge/?version=pypi-release
:target: http://pyroomacoustics.readthedocs.io/en/pypi-release/
:alt: Documentation Status
Expand Down
17 changes: 7 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,8 @@ def build_extensions(self):
],
cmdclass={"build_ext": BuildExt}, # taken from pybind11 example
zip_safe=False,
test_suite="nose.collector",
tests_require=["nose"],
test_suite="pytest",
tests_require=["pytest"],
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
Expand All @@ -207,14 +207,11 @@ def build_extensions(self):
"License :: OSI Approved :: MIT License",
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
#'Programming Language :: Python :: 3.3',
#'Programming Language :: Python :: 3.4',
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
# What does your project relate to?
keywords="room acoustics signal processing doa beamforming adaptive",
Expand Down

0 comments on commit 001bcd3

Please sign in to comment.