8000 Keep documentation for previous spec versions alongside `draft` by honno · Pull Request #505 · data-apis/array-api · GitHub
[go: up one dir, main page]

Skip to content

Keep documentation for previous spec versions alongside draft #505

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 18 commits into from
Jan 18, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix 2022.12 building
  • Loading branch information
honno committed Jan 6, 2023
commit 85df0ea8c931ca5a4f5bcda705ce00a01caa967e
7 changes: 7 additions & 0 deletions spec/2022.12/conf.py
Origina 8FB2 l file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import sys

from array_api_stubs import _2022_12 as stubs_mod
from _array_api_conf import *

release = "2022.12"
sys.modules["array_api"] = stubs_mod
2 changes: 1 addition & 1 deletion src/array_api_stubs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from . import _2021_12, _draft
from . import _2021_12, _2022_12, _draft

0