From 8ccb391e16e69b9bb9e9bc1b50d6fb5544375b62 Mon Sep 17 00:00:00 2001 From: Victor de Souza magalhaes Date: Thu, 27 Feb 2025 14:33:36 -0700 Subject: [PATCH 1/2] Changed supported versions to [3.10, 3.11 and 3.12] on project files. --- asv.conf.json | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/asv.conf.json b/asv.conf.json index 10252fab..b48ed322 100644 --- a/asv.conf.json +++ b/asv.conf.json @@ -62,7 +62,7 @@ // The Pythons you'd like to test against. If not provided, defaults // to the current version of Python used to run `asv`. // "pythons": ["2.7", "3.6"], - "pythons": ["3.8", "3.9", "3.10"], + "pythons": ["3.10", "3.11", "3.12"], // The list of conda channel names to be searched for benchmark // dependency packages in the specified order diff --git a/pyproject.toml b/pyproject.toml index 82dc0b1b..bbf50f29 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "astrohack" version = "0.6.0" description = "Holography Antenna Commissioning Kit" readme = "README.md" -requires-python = ">= 3.9, < 3.12" +requires-python = ">= 3.10, < 3.13" dependencies = [ "astropy", "dask", "distributed", "dropbox", "toolviper", "ipywidgets", "matplotlib", "numba>=0.57.0", "numpy==1.26.4", "prettytable", "pycryptodome", "pytest", "pytest-cov", "pytest-html", "scikit_image", "scikit-learn", "scipy", "rich", "xarray", "zarr<3.0", "bokeh", "jupyterlab", "python_casacore>=3.5.2; sys_platform != \"darwin\" ",] [[project.authors]] name = "Joshua Hoskins" From 883a71c1c69242b0c1745fe746a9e47f301b7bf5 Mon Sep 17 00:00:00 2001 From: Victor de Souza magalhaes Date: Thu, 27 Feb 2025 14:33:59 -0700 Subject: [PATCH 2/2] Changed testing to work on [3.10, 3.11 and 3.12] --- .github/workflows/python-testing-linux.yml | 2 +- .github/workflows/python-testing-macos.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-testing-linux.yml b/.github/workflows/python-testing-linux.yml index defb0126..f4e073ab 100644 --- a/.github/workflows/python-testing-linux.yml +++ b/.github/workflows/python-testing-linux.yml @@ -19,7 +19,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python-version: ["3.9","3.10","3.11"] + python-version: ["3.10","3.11", "3.12"] steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/python-testing-macos.yml b/.github/workflows/python-testing-macos.yml index 0690d084..1b87ea17 100644 --- a/.github/workflows/python-testing-macos.yml +++ b/.github/workflows/python-testing-macos.yml @@ -23,7 +23,7 @@ jobs: fail-fast: false matrix: os: ["macos-latest"] - python-version: ["3.9", "3.10","3.11"] + python-version: ["3.10","3.11", "3.12"] steps: - name: Setup Conda uses: conda-incubator/setup-miniconda@v2