From 544c8cedac375b5772b0560f4425b67f0cde0751 Mon Sep 17 00:00:00 2001 From: JoeZiminski Date: Mon, 18 Dec 2023 11:47:02 +0000 Subject: [PATCH] Drop python 3.8 --- .github/workflows/lint_and_test.yml | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint_and_test.yml b/.github/workflows/lint_and_test.yml index 3782d6e..80c4e75 100644 --- a/.github/workflows/lint_and_test.yml +++ b/.github/workflows/lint_and_test.yml @@ -22,7 +22,7 @@ jobs: strategy: matrix: os: [windows-latest, ubuntu-latest, macos-latest] - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v3 diff --git a/pyproject.toml b/pyproject.toml index 5cb3a1c..100bd83 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "spikewrap" authors = [{name = "Joe Ziminski", email= "joseph.j.ziminski@gmail.com"}] description = "Run extracellular electrophysiology analysis with SpikeInterface" readme = "README.md" -requires-python = ">=3.8.0" +requires-python = ">=3.9.0" dynamic = ["version"] license = {text = "BSD-3-Clause"} @@ -12,9 +12,9 @@ classifiers = [ "Development Status :: 2 - Pre-Alpha", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Operating System :: OS Independent", "License :: OSI Approved :: BSD License", ]