From 1a3c704b061bc756b687663f9bd05d7fbc3f15de Mon Sep 17 00:00:00 2001 From: Kyle Conroy Date: Thu, 7 Dec 2023 13:40:59 -0500 Subject: [PATCH] remove support for python 3.8 (#71) CI tests are stalling and jdaviz does not support python 3.8 anyways --- .github/workflows/ci_workflows.yml | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci_workflows.yml b/.github/workflows/ci_workflows.yml index 1249cc5a..529a1a8e 100644 --- a/.github/workflows/ci_workflows.yml +++ b/.github/workflows/ci_workflows.yml @@ -57,9 +57,9 @@ jobs: toxenv: py39-test allow_failure: false - - name: Windows - Python 3.8 + - name: Windows - Python 3.9 os: windows-latest - python: 3.8 + python: 3.9 toxenv: py38-test allow_failure: false diff --git a/pyproject.toml b/pyproject.toml index 923fd38d..7d87b67c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "lcviz" description = "A Jdaviz-based light curve analysis and visualization tool" -requires-python = ">=3.8" +requires-python = ">=3.9" authors = [ { name = "JDADF Developers", email = "kconroy@stsci.edu" }, ]