8000 Add compatibility tables to rendered specification by kgryte · Pull Request #607 · data-apis/array-api · GitHub
[go: up one dir, main page]

Skip to content

Add compatibility tables to rendered specification #607

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

Draft
wants to merge 13 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
Update list of ignored files and directories
  • Loading branch information
kgryte committed Mar 6, 2023
commit 7c794ea61d0221ec3cdd715978ff038aa7a9fa6d
167 changes: 161 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,170 @@
# SOFTWARE.
#/

# Files #
#########


# Directories #
###############
_site/
doctrees/
build/
.vscode/
node_modules/
__pycache__/
*.pyc
spec/**/generated
dist/

build/
downloads/
reports/
tmp/

# Compiled source #
###################
*.com
*.class
*.dll
*.o
*.so
*.slo
*.lo
*.obj
*.dylib
*.lai
*.la
*.a
*.lib
*.ko
*.elf
*.node

# Precompiled headers #
#######################
*.gch
*.pch

# Executables #
###############
*.exe
*.out
*.app

# Packages #
############
# It is better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip

# Logs and databases #
######################
*.log
*.sql
*.sqlite

# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
Icon?
ehthumbs.db
Thumbs.db
Desktop.ini

# Temporary files #
###################
*~

# Node.js #
###########
/node_modules/
pids
*.pid
*.seed

# Typescript #
##############
*.tsbuildinfo

# Matlab #
##########
*.asv
*.mex*

# Fortran #
###########
*.mod

# R #
#####
.Rhistory
.Rapp.history
.Rproj.user/

# Python #
##########
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
*.egg
dist/

# TeX #
#######
*.aux
*.lof
*.log
*.lot
*.fls
*.out
*.toc
*.dvi
*-converted-to.*
*.bbl
*.bcf
*.blg
*-blx.aux
*-blx.bib
*.brf
*.run.xml
*.fdb_latexmk
*.synctex
*.synctex.gz
*.synctex.gz(busy)
*.pdfsync
*.alg
*.loa
acs-*.bib
*.thm
*.nav
*.snm
*.vrb
*.acn
*.acr
*.glg
*.glo
*.gls
*-concordance.tex
*.tikz
*-tikzDictionary
*.idx
*.ilg
*.ind
*.ist

# Visual Studio #
#################
.vscode/
jsconfig.json

# Sublime Text #
################
*.sublime-workspace
*.sublime-project
0