Skip to content
Snippets Groups Projects
Commit a8d2894a authored by Cees Bassa's avatar Cees Bassa
Browse files

Merge branch 'fix-python3.13' into 'main'

Fix python 3.13 not working due to not needed xarray dependency

See merge request bassa/lofty!5
parents 6b47b24f f84edf72
Branches main
No related tags found
No related merge requests found
...@@ -83,7 +83,7 @@ run_unit_tests: ...@@ -83,7 +83,7 @@ run_unit_tests:
- tox -e py3${PY_VERSION} - tox -e py3${PY_VERSION}
parallel: parallel:
matrix: # use the matrix for testing matrix: # use the matrix for testing
- PY_VERSION: [9, 10, 11] - PY_VERSION: [9, 10, 11, 12]
# Run code coverage on the base image thus also performing unit tests # Run code coverage on the base image thus also performing unit tests
run_unit_tests_coverage: run_unit_tests_coverage:
......
# lofty # lofty
![build status](https://git.astron.nl/bassa/lofty/badges/main/pipeline.svg)
![test coverage](https://git.astron.nl/bassa/lofty/badges/main/coverage.svg)
LOFAR2.0 statistics analysis tools LOFAR2.0 statistics analysis tools
======= =======
## Getting started ## Getting started
To make it easy for you to get started with GitLab, here's a list of recommended next steps. To make it easy for you to get started with GitLab, here's a list of recommended next steps.
......
FROM python:3.12 FROM python:3.13
RUN python -m pip install --upgrade pip RUN python -m pip install --upgrade pip
RUN pip install --upgrade tox twine RUN pip install --upgrade tox twine
...@@ -2,8 +2,7 @@ numpy ...@@ -2,8 +2,7 @@ numpy
dask dask
jax jax
# jax[cuda12] # jax[cuda12]
jaxlib jaxlib<0.5.1
xarray
astropy astropy
matplotlib matplotlib
fastplotlib fastplotlib
......
[tox] [tox]
# Generative environment list to test all supported Python versions # Generative environment list to test all supported Python versions
envlist = py3{9,10,11,12},black,pep8,pylint envlist = py3{9,10,11,12,13},black,pep8,pylint
min_version = 4.3.3 min_version = 4.3.3
requires = requires =
tox-ignore-env-name-mismatch >= 0.2.0 tox-ignore-env-name-mismatch >= 0.2.0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment