From 89e3d794e80c11fbb4cd3fe524e97916074873db Mon Sep 17 00:00:00 2001 From: Rob Farmer Date: Fri, 19 May 2023 14:24:28 +0200 Subject: [PATCH] Update python versions --- .github/workflows/test.yml | 2 +- setup.cfg | 4 ++-- tox.ini | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7da2a7d..7aa399b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - python-version: ['3.6', '3.7', '3.8', '3.9', '3.10'] + python-version: ['3.7', '3.8', '3.9', '3.10','3.11'] steps: - uses: actions/checkout@v2 diff --git a/setup.cfg b/setup.cfg index 922e822..01074a1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -11,16 +11,16 @@ url = https://github.com/rjfarmer/mesaPlot classifiers = Programming Language :: Python :: 3 Programming Language :: Python :: 3 :: Only - 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 Topic :: Scientific/Engineering :: Astronomy Intended Audience :: Science/Research [options] -python_requires = >=3.6 +python_requires = >=3.7 packages = find: install_requires = numpy diff --git a/tox.ini b/tox.ini index e6199eb..5c778c8 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 3.8.0 -envlist = py3{6,7,8,9,10} +envlist = py3{7,8,9,10,11} isolated_build = true [testenv]