Compatibility Matrix

See the list of Carto-Lab Versions and supported features or package versions.

▼Feature or Package - Carto-Lab Docker Version ▶ 0.13.0 0.19.0 0.24.2 0.26.0
Container OS Debian 11 Debian 12
Conda 23.3.1 24.7.1 24.11.0
Jupyter Lab 3.6.3 4.2.5 4.3.1 v4.4.0b0 (x)
Jupyter Server 2.5.0 2.14.2
Python (Server) 3.10.10 3.12.5 3.12.7
Python (worker_env) 3.9.15 3.12.5 3.12.7
notebook 6.5.3 6.5.7
IPython 8.12.0 8.26.0 8.29.0
nodejs / 22.11.0
Language Server: jupyterlab-lsp / 5.1.0 (x)
Language Server: pyright / 1.1.389 (x)
Jupyter Real Time collaboration (RTC) / 1.16.4 v4.0.0b0 (x)
jupyterlab_widgets 3.0.7 3.0.13 3.0.13
Jupytext 1.14.5 1.16.4
Jupyterlab-git 0.50.1 0.50.2
Spellchecker 0.7.3 0.8.4
nbextensions 0.7.0
R / 4.2.2
Mapnik 3.1
nbconvert 7.2.10 7.16.4
papermill 2.3.4 2.6.0
geopandas 0.12.2 1.0.1
ipywidgets 8.0.6 8.1.5
matplotlib 3.7.1 3.9.2
shapely 1.7.1 2.0.6
pyproj 3.2.1 3.6.1 3.7.0
pandas 1.5.3 2.2.2 2.2.3
numpy 1.22.4 1.26.4
cartopy 0.20.1 0.23.0 0.24.0
geoviews 1.9.5 1.12.0 1.13.0
Bokeh 2.4.3 3.4.2 3.5.2
Rasterio 1.2.10 1.3.10 1.4.2
  • /- Feature not included
  • (x) - Feature test
  • o - Issue or Bug
  • Empty: no change

Note

The :rstudio and :mapnik container tags have slightly different versions due to dependency pinnings. If you want the latest Python packages, as shown in the Matrix above, don't use the :rstudio and :mapnik container tags.

Generated with tests/get_versions.sh .
#!/bin/bash

# Purpose: Get all important versions from the build Carto-Lab Docker Container
# to be listed in the compatibility matrix
# https://cartolab.theplink.org/matrix/


# get jupyter_env package versions
printf "\nJupyter env package versions: \n\n"
declare -a arr=("notebook" 
                "IPython" 
                "jupyterlab_git" 
                "jupyterlab_lsp" 
                "pyright" 
                "jupytext" 
                "jupyterlab_widgets" 
                "nbconvert" 
                "nbclassic" 
                "papermill" 
                "jupyterlab_spellchecker" 
                "jupyter_contrib_nbextensions" 
                )

for i in "${arr[@]}"
do
   version=$(docker compose run jupyterlab /bin/bash -c \
    'source /opt/conda/bin/activate /opt/conda/envs/jupyter_env; \
    /opt/conda/envs/jupyter_env/bin/python -c "import "$0"; print("$0".__version__)"' ${i})
   echo "$i $version"
done;

# get worker_env package versions
printf "\nJupyter env package versions: \n\n"
declare -a arr=("geopandas" 
                "ipywidgets" 
                "matplotlib" 
                "shapely" 
                "pyproj" 
                "pandas"   
                "numpy"  
                "cartopy"  
                "geoviews" 
                "bokeh" 
                "rasterio")

for i in "${arr[@]}"
do
   version=$(docker compose run jupyterlab /bin/bash -c \
    'source /opt/conda/bin/activate /opt/conda/envs/worker_env; \
    /opt/conda/envs/worker_env/bin/python -c "import "$0"; print("$0".__version__)"' ${i})
   echo "$i $version"
done;

printf "\nOS: \n\n"
docker compose run jupyterlab /bin/bash -c "cat /etc/*release"
printf "\njupyterlab Python \n\n"
docker compose run jupyterlab /opt/conda/envs/jupyter_env/bin/python -c "import jupyterlab; print(jupyterlab.__version__)"
printf "\njupyter_server \n\n"
docker compose run jupyterlab /opt/conda/envs/jupyter_env/bin/python -c "import jupyter_server; print(jupyter_server.__version__)"
printf "\nworker_env Python \n\n"
docker compose run jupyterlab /opt/conda/envs/worker_env/bin/python --version
printf "\njupyter_env Python \n\n"
docker compose run jupyterlab /opt/conda/envs/jupyter_env/bin/python --version
printf "\nMapnik (requires container tag :mapnik) \n\n"
docker compose run jupyterlab /usr/bin/python3 -c "import mapnik;print(mapnik.paths.__all__)"
# echo "\nR Version (requies container tag :rstudio) \n\n"
# docker compose run jupyterlab ls /opt/conda/envs/r_env/bin/
printf "\nConda version: \n\n"
docker compose run jupyterlab conda --version
printf "\nR Version (requies container tag :rstudio) \n\n"
docker compose run jupyterlab bash -c "conda activate r_env; R"
printf "\nnodejs version \n\n"
# docker compose run jupyterlab bash -c "conda init;conda activate jupyter_env; nodejs"
docker compose run jupyterlab /opt/conda/envs/jupyter_env/bin/node --version