Skip to content

Commit 3569ce0

Browse files
committed
Merge remote-tracking branch 'upstream/main' into add-fft-extension
2 parents 421216e + 157c16b commit 3569ce0

File tree

77 files changed

+6350
-5845
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+6350
-5845
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ _defaults: &defaults
55
docker:
66
# CircleCI maintains a library of pre-built images
77
# documented at https://circleci.com/docs/2.0/circleci-images/
8-
- image: circleci/python:3.7.0
8+
- image: cimg/python:3.10.2
99
working_directory: ~/repo
1010

1111
jobs:
@@ -19,7 +19,7 @@ jobs:
1919
name: build docs
2020
no_output_timeout: 25m
2121
command: |
22-
sudo pip install -r requirements.txt
22+
pip install -r requirements.txt
2323
sphinx-build -b html -WT --keep-going spec build/latest -d doctrees
2424
- store_artifacts:
2525
path: build/latest

.github/workflows/pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@master
1616
- uses: actions/setup-python@v2
1717
with:
18-
python-version: '3.8' # Version range or exact version of a Python version to use, using semvers version range syntax.
18+
python-version: '3.10.2' # Version range or exact version of a Python version to use, using semvers version range syntax.
1919
architecture: 'x64' # (x64 or x86)
2020
- run: |
2121
# add dependencies based on the conf.py

.github/workflows/preview.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
on: [status]
22
jobs:
33
circleci_artifacts_redirector_job:
4+
# Don't run Action on forks, and allow skipping CI
5+
if: "github.repository == 'data-apis/array-api'"
46
runs-on: ubuntu-latest
57
name: Run CircleCI artifacts redirector
68
steps:

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,6 @@ spec/_build/
22
build/
33
.vscode/
44
node_modules/
5+
__pycache__/
6+
*.pyc
7+
spec/**/generated

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
sphinx==3.1.1
1+
sphinx==4.3.0
22
sphinx-material==0.0.30
33
myst-parser
44
sphinx_markdown_tables
55
sphinx_copybutton
6+
docutils<0.18

0 commit comments

Comments
 (0)