From 2fe6ef8ab421c8fb339c13d489e1a6316b0aa38c Mon Sep 17 00:00:00 2001 From: Cameron Yick Date: Sun, 4 Feb 2024 20:01:41 -0500 Subject: [PATCH] dev: update tested and recommended python versions --- .github/workflows/python-package.yml | 2 +- setup.py | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index c310fc9..f9cee48 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.7', '3.8', '3.9'] + python-version: ['3.10', '3.11', '3.12',] WITH_PANDAS: [false, true] steps: diff --git a/setup.py b/setup.py index eaa66b2..692f871 100644 --- a/setup.py +++ b/setup.py @@ -66,9 +66,11 @@ setup( 'Natural Language :: English', 'Topic :: Office/Business :: Financial :: Investment', 'Programming Language :: Python :: 3', - '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', ], test_suite='tests', tests_require=test_requirements,