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 !5
parents 6b47b24f f84edf72
No related branches found
No related tags found
No related merge requests found
......@@ -83,7 +83,7 @@ run_unit_tests:
- tox -e py3${PY_VERSION}
parallel:
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_unit_tests_coverage:
......
# 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
=======
## Getting started
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 pip install --upgrade tox twine
......@@ -2,8 +2,7 @@ numpy
dask
jax
# jax[cuda12]
jaxlib
xarray
jaxlib<0.5.1
astropy
matplotlib
fastplotlib
......
[tox]
# 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
requires =
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