From a68d71f27481f1cc019d83fc719660bf690bbe94 Mon Sep 17 00:00:00 2001 From: Jonathan Kenyon Date: Thu, 28 Nov 2024 15:30:42 +0200 Subject: [PATCH] Reintroduce support for python 3.8 and 3.9. --- .github/workflows/test_installation.yml | 2 +- pyproject.toml | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test_installation.yml b/.github/workflows/test_installation.yml index 520d51f..65b560a 100644 --- a/.github/workflows/test_installation.yml +++ b/.github/workflows/test_installation.yml @@ -15,7 +15,7 @@ jobs: strategy: matrix: os: [ ubuntu-20.04, ubuntu-22.04 ] - python-version: ["3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v2 diff --git a/pyproject.toml b/pyproject.toml index e620ac8..2dfef94 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,16 +10,17 @@ packages = [ [tool.poetry.dependencies] -python = "^3.10" +python = "^3.8" astro-kittens = "^1.4.6" numpy = [ { version = ">=2.0.0", python = ">=3.12"}, - { version = "<2.0.0", python = ">=3.10, <3.12"} + { version = "<2.0.0", python = ">=3.8, <3.12"} ] scipy = "*" astlib = [ { version = ">=0.12.0", python = ">=3.12"}, - { version = "<=0.11.10", python = ">=3.10, <3.12"} + { version = "<=0.11.10", python = ">=3.8, <3.12"}, + { version = "<=0.11.8", python = "<=3.8"} ] astropy = "*" future = "*"