From 6ec77555987a82bed7c65f8831ce935bbcfc45b0 Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Mon, 26 Jun 2023 21:11:58 -0400 Subject: [PATCH] MNT: Drop Python 3.7 support --- .github/workflows/release.yml | 2 +- .github/workflows/testpydra.yml | 2 +- .github/workflows/testsingularity.yml | 2 +- pyproject.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7c9329d048..3bffcc02a7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: 3.7 + python-version: 3 - name: Download auto run: | diff --git a/.github/workflows/testpydra.yml b/.github/workflows/testpydra.yml index 93c722e6b4..5e28aee1a0 100644 --- a/.github/workflows/testpydra.yml +++ b/.github/workflows/testpydra.yml @@ -50,7 +50,7 @@ jobs: strategy: matrix: os: [macos-latest, ubuntu-latest, windows-latest] - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11'] install: ['wheel'] include: - os: 'ubuntu-latest' diff --git a/.github/workflows/testsingularity.yml b/.github/workflows/testsingularity.yml index 2f7583b2df..83cd1c41c3 100644 --- a/.github/workflows/testsingularity.yml +++ b/.github/workflows/testsingularity.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.7, 3.8, 3.9, "3.10"] + python-version: [3.8, 3.9, "3.10", "3.11"] fail-fast: False steps: diff --git a/pyproject.toml b/pyproject.toml index 5ac0fe6706..38ca9f8d14 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "flit_scm:buildapi" name = "pydra" description = "Pydra dataflow engine" readme = "README.rst" -requires-python = ">=3.7" +requires-python = ">=3.8" dependencies = [ "attrs >=19.1.0", "cloudpickle >=2.0.0",