From 66d9653be06d911f1b39cfd4c4074a32ae225182 Mon Sep 17 00:00:00 2001 From: Omid <ohosseini@passcal.nmt.edu> Date: Fri, 13 Oct 2023 13:45:12 -0600 Subject: [PATCH] Remove python 3.8 support --- .gitlab-ci.yml | 6 +++--- conda.recipe/meta.yaml | 4 ++-- setup.py | 2 +- tox.ini | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 268690c..73b0c66 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -21,7 +21,7 @@ before_script: - pip install -e .[dev] linting: - image: python:3.8 + image: python:3.9 tags: - passoft stage: test @@ -29,8 +29,8 @@ linting: - flake8 lopt - flake8 tests -python3.8: - image: python:3.8 +python3.9: + image: python:3.9 tags: - passoft stage: test diff --git a/conda.recipe/meta.yaml b/conda.recipe/meta.yaml index b70d24f..9ce39d6 100644 --- a/conda.recipe/meta.yaml +++ b/conda.recipe/meta.yaml @@ -11,10 +11,10 @@ build: requirements: build: - - python >=3.8 + - python >=3.9 - pip run: - - python >=3.8 + - python >=3.9 test: source_files: diff --git a/setup.py b/setup.py index 4b34915..451b034 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setup( 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', 'Natural Language :: English', - 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', ], description="Display time in PASSCAL time format", entry_points={ diff --git a/tox.ini b/tox.ini index 2dce737..ecca66a 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py38, flake8 +envlist = py39, flake8 [testenv:flake8] basepython = python -- GitLab