Skip to content

Commit c9a7fba

Browse files
authored
Merge pull request #51 from Kai-Striega/drop_python_35
ENH: Drop python 3.5 support
2 parents 100817c + 62f2d60 commit c9a7fba

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
max-parallel: 4
1111
matrix:
12-
python-version: [3.5, 3.6, 3.7]
12+
python-version: [3.6, 3.7]
1313
numpy-version: [1.15, 1.16, 1.17]
1414

1515
steps:

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ def get_version():
2828
License :: OSI Approved :: BSD License
2929
Programming Language :: Python
3030
Programming Language :: Python :: 3
31-
Programming Language :: Python :: 3.5
3231
Programming Language :: Python :: 3.6
3332
Programming Language :: Python :: 3.7
3433
Programming Language :: Python :: 3 :: Only
@@ -56,7 +55,7 @@ def get_version():
5655
maintainer='Numpy Financial Developers',
5756
maintainer_email='numpy-discussion@python.org',
5857
install_requires=['numpy>=1.15'],
59-
python_requires='>=3.5',
58+
python_requires='>=3.6',
6059
classifiers=CLASSIFIERS.splitlines(),
6160
url='https://numpy.org/numpy-financial/',
6261
download_url='https://pypi.org/project/numpy-financial/',

0 commit comments

Comments
 (0)