From dfaa75c3e2fe18bdcf53b001c53e02ee492d3d03 Mon Sep 17 00:00:00 2001 From: xadupre Date: Fri, 2 Jun 2023 10:07:25 +0200 Subject: [PATCH] Fix actions --- .github/workflows/wheels-linux.yml | 4 ++-- _doc/conf.py | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/wheels-linux.yml b/.github/workflows/wheels-linux.yml index 8445674..21b0a22 100644 --- a/.github/workflows/wheels-linux.yml +++ b/.github/workflows/wheels-linux.yml @@ -31,8 +31,8 @@ jobs: - name: Build wheels run: python -m cibuildwheel --output-dir wheelhouse # to supply options, put them in 'env', like: - #env: - # # CIBW_BUILD: "cp310* cp311*" + env: + CIBW_BUILD: "cp310* cp311*" # CIBW_SKIP: cp36-* cp37-* cp38-* cp39-* - uses: actions/upload-artifact@v3 diff --git a/_doc/conf.py b/_doc/conf.py index 86853c3..5790347 100644 --- a/_doc/conf.py +++ b/_doc/conf.py @@ -1,8 +1,7 @@ # coding: utf-8 import os import sys - -from onnx_array_api import __version__ +from sphinx_runpython import __version__ extensions = [ "sphinx.ext.autodoc", @@ -23,7 +22,7 @@ html_logo = "_static/logo.png" source_suffix = ".rst" master_doc = "index" -project = "onnx-array-api" +project = "sphinx-runpython" copyright = "2023, Xavier Dupré" author = "Xavier Dupré" version = __version__