From 83b7d225dab8c6fa45150c6253339a2e47a54513 Mon Sep 17 00:00:00 2001 From: Kai Striega Date: Sun, 13 Feb 2022 14:25:10 +0800 Subject: [PATCH 1/2] TEST: Drop python 3.5 tests Python 3.5 is no longer supported by Github actions and causes the tests to fail. --- .github/workflows/pythonpackage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index c44b44d..dcdfce1 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -9,7 +9,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: [3.5, 3.6, 3.7] + python-version: [3.6, 3.7] numpy-version: [1.15, 1.16, 1.17] steps: From 62f2d609899d75d5090d058cc3b2dbf095fcb641 Mon Sep 17 00:00:00 2001 From: Kai Striega Date: Mon, 7 Mar 2022 10:20:30 +0800 Subject: [PATCH 2/2] TEST: Drop python 3.5 support --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 1c1f54f..8d86250 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,6 @@ def get_version(): License :: OSI Approved :: BSD License Programming Language :: Python Programming Language :: Python :: 3 -Programming Language :: Python :: 3.5 Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 Programming Language :: Python :: 3 :: Only @@ -56,7 +55,7 @@ def get_version(): maintainer='Numpy Financial Developers', maintainer_email='numpy-discussion@python.org', install_requires=['numpy>=1.15'], - python_requires='>=3.5', + python_requires='>=3.6', classifiers=CLASSIFIERS.splitlines(), url='https://numpy.org/numpy-financial/', download_url='https://pypi.org/project/numpy-financial/',