dev: update tested and recommended python versions

This commit is contained in:
Cameron Yick
2024-02-04 20:01:41 -05:00
parent 37ebcbdcd0
commit 2fe6ef8ab4
2 changed files with 5 additions and 3 deletions

View File

@@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
python-version: ['3.7', '3.8', '3.9'] python-version: ['3.10', '3.11', '3.12',]
WITH_PANDAS: [false, true] WITH_PANDAS: [false, true]
steps: steps:

View File

@@ -66,9 +66,11 @@ setup(
'Natural Language :: English', 'Natural Language :: English',
'Topic :: Office/Business :: Financial :: Investment', 'Topic :: Office/Business :: Financial :: Investment',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8', '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',
], ],
test_suite='tests', test_suite='tests',
tests_require=test_requirements, tests_require=test_requirements,