Skip to content

Commit

Permalink
Merge pull request #5 from cseptesting/4-ci-test-failing
Browse files Browse the repository at this point in the history
Removing python 3.8 support.
  • Loading branch information
pabloitu authored Jul 5, 2024
2 parents 6f5ce41 + bdc86df commit 0b205a1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
5 changes: 2 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -35,7 +34,7 @@ install_requires =
seaborn
tables
xmltodict
python_requires = >=3.8
python_requires = >=3.9
zip_safe = no

[options.packages.find]
Expand Down Expand Up @@ -81,4 +80,4 @@ console_scripts =
floatcsep = floatcsep.cmd.main:floatcsep

[flake8]
max-line-length = 79
max-line-length = 96
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 0b205a1

Please sign in to comment.