From 22bd512cba7de34a815694aa2a778a4c8d610a48 Mon Sep 17 00:00:00 2001 From: Luis Obis Date: Mon, 14 Nov 2022 11:08:52 +0100 Subject: [PATCH] updated minimum supported python version from 3.7 to 3.8 --- .github/workflows/build-test.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index f904b56..0c51272 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -16,7 +16,7 @@ jobs: fail-fast: false matrix: platform: [ ubuntu-latest, windows-latest, macos-latest ] - python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ] + python-version: [ "3.8", "3.9", "3.10", "3.11" ] runs-on: ${{ matrix.platform }} timeout-minutes: 20 diff --git a/pyproject.toml b/pyproject.toml index 881a8cd..79f526e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ authors = [ ] description = "An unofficial Python package 🐍📦 to interface with Teledyne LeCroy oscilloscopes and read binary trace files (.trc)" readme = "README.md" -requires-python = ">=3.7" +requires-python = ">=3.8" classifiers = [ "Programming Language :: Python :: 3", "Operating System :: OS Independent",