From 231258c6fd690745c77f672948e96494a3102e4c Mon Sep 17 00:00:00 2001 From: Daniel Perrefort Date: Wed, 17 Jul 2024 16:11:04 -0400 Subject: [PATCH] Bumps minimum Python version to 3.9 (#99) * Bumps minimum Python version * Update PackageTest.yml --- .github/workflows/CodeQL.yml | 2 -- .github/workflows/PackageTest.yml | 10 ++++------ pyproject.toml | 4 ++-- 3 files changed, 6 insertions(+), 10 deletions(-) diff --git a/.github/workflows/CodeQL.yml b/.github/workflows/CodeQL.yml index 3aa2e06..b4eb21b 100644 --- a/.github/workflows/CodeQL.yml +++ b/.github/workflows/CodeQL.yml @@ -5,8 +5,6 @@ on: branches: [ main ] pull_request: branches: [ main ] - schedule: - - cron: 0 7 1 * * jobs: analyze: diff --git a/.github/workflows/PackageTest.yml b/.github/workflows/PackageTest.yml index b241b8f..fa07a28 100644 --- a/.github/workflows/PackageTest.yml +++ b/.github/workflows/PackageTest.yml @@ -4,8 +4,6 @@ on: workflow_dispatch: workflow_call: push: - schedule: - - cron: 0 7 1,15 * * jobs: run-tests: @@ -15,14 +13,14 @@ jobs: fail-fast: false matrix: slurm_version: - - 20.11.9.1 - - 22.05.2.1 - - 23.02.5.1 + - 20.11.9 + - 22.05.2 + - 23.02.5 python_version: - - 3.8 - 3.9 - 3.10 - 3.11 + - 3.12 container: image: ghcr.io/pitt-crc/test-env:${{ matrix.slurm_version }} diff --git a/pyproject.toml b/pyproject.toml index 89c453a..78593a6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,11 +28,11 @@ classifiers = [ shinigami = "shinigami.cli:Application.execute" [tool.poetry.dependencies] -python = ">=3.8" +python = "^3.9.0" pydantic = "^2.0.3" pydantic-settings = "^2.0.2" asyncssh = { extras = ["bcrypt", "fido2"], version = "^2.13.2" } -pandas = "2.0.3" +pandas = "2.2.2" [tool.poetry.group.tests] optional = true