From 70ea6405ae25b0217c55d9d09f3fec99b5aafb5e Mon Sep 17 00:00:00 2001 From: Omid <ohosseini@passcal.nmt.edu> Date: Fri, 13 Oct 2023 14:49:17 -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 19f7c46..4d919f7 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 refscrub - 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 240046b..e2c2b23 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 aeef3ea..c523f85 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="Remove select packets from RT130 data", entry_points={ diff --git a/tox.ini b/tox.ini index f7228a2..50500c9 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py38, flake8 +envlist = py39, flake8 [testenv:flake8] basepython = python -- GitLab