From 001bcd3ad43e685e627df5f7ed7693701b5cdbbf Mon Sep 17 00:00:00 2001 From: Robin Scheibler Date: Tue, 23 Apr 2024 09:30:07 +0900 Subject: [PATCH] Updates python version in setup.py. Removes broken image link in README. --- README.rst | 2 -- setup.py | 17 +++++++---------- 2 files changed, 7 insertions(+), 12 deletions(-) diff --git a/README.rst b/README.rst index 8ccf797e..f6a5653d 100755 --- a/README.rst +++ b/README.rst @@ -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 diff --git a/setup.py b/setup.py index 8acd3a6f..a91a0746 100644 --- a/setup.py +++ b/setup.py @@ -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 @@ -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",