diff --git a/.github/workflows/cibuildwheel-impl/action.yml b/.github/workflows/cibuildwheel-impl/action.yml index 9e8d7825f4f98..5307c3e9b7f7d 100644 --- a/.github/workflows/cibuildwheel-impl/action.yml +++ b/.github/workflows/cibuildwheel-impl/action.yml @@ -9,7 +9,7 @@ runs: using: "composite" steps: - name: Build wheel - uses: pypa/cibuildwheel@v3.0.1 + uses: pypa/cibuildwheel@v3.3.1 env: CIBW_BUILD: ${{ inputs.build-tag }} diff --git a/.github/workflows/python_wheel_build.yml b/.github/workflows/python_wheel_build.yml index 4412ac0806e07..8cdaf8f0eaba1 100644 --- a/.github/workflows/python_wheel_build.yml +++ b/.github/workflows/python_wheel_build.yml @@ -28,7 +28,7 @@ jobs: strategy: fail-fast: false matrix: - target: [cp310-manylinux_x86_64, cp311-manylinux_x86_64, cp312-manylinux_x86_64, cp313-manylinux_x86_64] + target: [cp310-manylinux_x86_64, cp311-manylinux_x86_64, cp312-manylinux_x86_64, cp313-manylinux_x86_64, cp314-manylinux_x86_64] name: ${{ matrix.target }} steps: - uses: actions/checkout@v4 @@ -42,7 +42,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.10", "3.11", "3.12", "3.13"] + python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] name: test-wheel-cp${{ matrix.python-version }} steps: - uses: actions/checkout@v4 @@ -58,6 +58,9 @@ jobs: with: python-version: ${{ matrix.python-version }} + - name: Install CA certificates for Davix + run: sudo apt-get install -y ca-certificates + - name: Install produced wheel run: | ls -R wheels diff --git a/pyproject.toml b/pyproject.toml index 45753dd4ad054..514e313b6bb94 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,8 +3,8 @@ requires = ["cmake", "setuptools<72", "wheel", "numpy"] [project] name = "ROOT" -version = "0.1a9" -requires-python = ">=3.9" +version = "0.1a11" +requires-python = ">=3.10" maintainers = [ {name = "Vincenzo Eduardo Padulano", email = "vincenzo.eduardo.padulano@cern.ch"} ] @@ -27,4 +27,4 @@ manylinux-x86_64-image = "manylinux_2_28" # Install system libraries [tool.cibuildwheel.linux] -before-all = "dnf install -y epel-release && /usr/bin/crb enable && dnf install -y openssl-devel libX11-devel libXpm-devel libXft-devel libXext-devel libuuid-devel libjpeg-devel giflib-devel" +before-all = "dnf install -y epel-release && /usr/bin/crb enable && dnf install -y openssl-devel libX11-devel libXpm-devel libXft-devel libXext-devel libuuid-devel libjpeg-devel giflib-devel libxml2-devel" diff --git a/setup.py b/setup.py index be8aa84f0eaeb..559d2dc0a1f61 100644 --- a/setup.py +++ b/setup.py @@ -84,9 +84,9 @@ def run(self): # see https://peps.python.org/pep-0513/#libpythonx-y-so-1 # - thisroot_scripts: the thisroot.* scripts are broken if CMAKE_INSTALL_PYTHONDIR!=CMAKE_INSTALL_LIBDIR "-Dtmva-pymva=OFF -Dtpython=OFF -Dthisroot_scripts=OFF " - "-Dbuiltin_nlohmannjson=ON -Dbuiltin_tbb=ON -Dbuiltin_xrootd=ON " # builtins + "-Dbuiltin_nlohmannjson=ON -Dbuiltin_tbb=ON -Dbuiltin_xrootd=ON -Dbuiltin_davix=ON " # builtins "-Dbuiltin_lz4=ON -Dbuiltin_lzma=ON -Dbuiltin_zstd=ON -Dbuiltin_xxhash=ON " # builtins - "-Dpyroot=ON -Ddataframe=ON -Dxrootd=ON -Dssl=ON -Dimt=ON " + "-Dpyroot=ON -Ddataframe=ON -Dxrootd=ON -Ddavix=ON -Dssl=ON -Dimt=ON " "-Droofit=ON -Dmathmore=ON -Dbuiltin_fftw3=ON -Dbuiltin_gsl=ON " # Next 4 paths represent the structure of the target binaries/headers/libs # as the target installation directory of the Python environment would expect diff --git a/test/wheels/test_tutorials.py b/test/wheels/test_tutorials.py index 9de62eec26b2c..eb28813798cc5 100644 --- a/test/wheels/test_tutorials.py +++ b/test/wheels/test_tutorials.py @@ -15,9 +15,6 @@ subdirs = ["analysis/dataframe", "analysis/tree", "hist", "io/ntuple", "roofit/roofit"] SKIP_TUTORIALS = { - "ntpl004_dimuon.C", # requires reading remote data via HTTP - "ntpl008_import.C", # requires reading remote data via HTTP - "ntpl011_global_temperatures.C", # requires reading remote data via HTTP "distrdf004_dask_lxbatch.py", # only works on lxplus "_SQlite", # requires SQLite, not supported yet in ROOT wheels "h1analysisProxy.C", # helper macro, not meant to run standalone