From bdc86dfbc777779a55a9609554aeed2c90a7ca32 Mon Sep 17 00:00:00 2001 From: pciturri Date: Fri, 5 Jul 2024 14:02:23 +0200 Subject: [PATCH] build: removed python 3.8 from build instructions and tox testing ci: removed python 3.8 from --- .github/workflows/build-test.yml | 2 +- setup.cfg | 5 ++--- tox.ini | 4 ++-- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 50d8799..2f4e9bd 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -14,7 +14,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest] - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.9', '3.10', '3.11'] defaults: run: shell: bash -l {0} diff --git a/setup.cfg b/setup.cfg index 86140c8..b758f59 100644 --- a/setup.cfg +++ b/setup.cfg @@ -10,7 +10,6 @@ version = 0.1.4 platforms = unix, linux, osx, win32 classifiers = Programming Language :: Python :: 3 - Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 @@ -35,7 +34,7 @@ install_requires = seaborn tables xmltodict -python_requires = >=3.8 +python_requires = >=3.9 zip_safe = no [options.packages.find] @@ -81,4 +80,4 @@ console_scripts = floatcsep = floatcsep.cmd.main:floatcsep [flake8] -max-line-length = 79 \ No newline at end of file +max-line-length = 96 \ No newline at end of file diff --git a/tox.ini b/tox.ini index 8075731..f7e71d0 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] -minversion = 3.8.0 +minversion = 3.11 envlist = - {py38,py39,py310,py311} + {py39,py310,py311} isolated_build = true requires = tox-conda