Skip to content

Commit 0b205a1

Browse files
authored
Merge pull request #5 from cseptesting/4-ci-test-failing
Removing python 3.8 support.
2 parents 6f5ce41 + bdc86df commit 0b205a1

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
os: [ubuntu-latest, macos-latest]
17-
python-version: ['3.8', '3.9', '3.10', '3.11']
17+
python-version: ['3.9', '3.10', '3.11']
1818
defaults:
1919
run:
2020
shell: bash -l {0}

setup.cfg

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ version = 0.1.4
1010
platforms = unix, linux, osx, win32
1111
classifiers =
1212
Programming Language :: Python :: 3
13-
Programming Language :: Python :: 3.8
1413
Programming Language :: Python :: 3.9
1514
Programming Language :: Python :: 3.10
1615
Programming Language :: Python :: 3.11
@@ -35,7 +34,7 @@ install_requires =
3534
seaborn
3635
tables
3736
xmltodict
38-
python_requires = >=3.8
37+
python_requires = >=3.9
3938
zip_safe = no
4039

4140
[options.packages.find]
@@ -81,4 +80,4 @@ console_scripts =
8180
floatcsep = floatcsep.cmd.main:floatcsep
8281

8382
[flake8]
84-
max-line-length = 79
83+
max-line-length = 96

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
2-
minversion = 3.8.0
2+
minversion = 3.11
33
envlist =
4-
{py38,py39,py310,py311}
4+
{py39,py310,py311}
55
isolated_build = true
66
requires = tox-conda
77

0 commit comments

Comments
 (0)