diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1e8cacb19..80fb7a0f2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,10 +9,8 @@ on: jobs: build: - - # Tag ubuntu version to 22.04, in order to support python 3.7 - # See issue: https://github.com/actions/runner-images/issues/10893 - # When ready to drop 3.7, can update from 'ubuntu-22.04' -> 'ubuntu-latest' + # Tag ubuntu image version to 22.04 in order to support python 3.7 + # When dropping 3.7, can update release (to 'ubuntu-24.04' or 'ubuntu-latest') runs-on: ubuntu-22.04 env: MODULE_NAME: specparam diff --git a/setup.py b/setup.py index 4d8547079..9f687dada 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ description = 'Spectral parameterization.', long_description = long_description, long_description_content_type = 'text/x-rst', - python_requires = '>=3.6', + python_requires = '>=3.7', author = 'The Voytek Lab', author_email = 'voyteklab@gmail.com', maintainer = 'Thomas Donoghue',