Skip to content

Commit 304818b

Browse files
Merge remote-tracking branch 'notebooks/main' into HEAD
2 parents 0d91295 + d57f865 commit 304818b

File tree

278 files changed

+138632
-0
lines changed

Some content is hidden

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

278 files changed

+138632
-0
lines changed

.gitignore

Lines changed: 181 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,183 @@
11
dist/
22
node_modules/
3+
.vs/
4+
.vscode/
5+
.idea/
6+
# Byte-compiled / optimized / DLL files
7+
__pycache__/
8+
*.py[cod]
9+
*$py.class
10+
11+
# C extensions
12+
*.so
13+
14+
# Distribution / packaging
15+
.Python
16+
build/
17+
develop-eggs/
18+
dist/
19+
downloads/
20+
eggs/
21+
.eggs/
22+
lib/
23+
lib64/
24+
parts/
25+
sdist/
26+
var/
27+
wheels/
28+
pip-wheel-metadata/
29+
share/python-wheels/
30+
*.egg-info/
31+
.installed.cfg
32+
*.egg
33+
MANIFEST
34+
35+
# Google GitHub Actions credentials files created by:
36+
# https://github.com/google-github-actions/auth
37+
#
38+
# That action recommends adding this gitignore to prevent accidentally committing keys.
39+
gha-creds-*.json
40+
41+
# PyInstaller
42+
# Usually these files are written by a python script from a template
43+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
44+
*.manifest
45+
*.spec
46+
47+
# Installer logs
48+
pip-log.txt
49+
pip-delete-this-directory.txt
50+
51+
# Unit test / coverage reports
52+
htmlcov/
53+
.tox/
54+
.nox/
55+
.coverage
56+
.coverage.*
57+
.cache
58+
nosetests.xml
59+
coverage.xml
60+
*.cover
61+
*.py,cover
62+
.hypothesis/
63+
.pytest_cache/
64+
65+
# Translations
66+
*.mo
67+
*.pot
68+
69+
# Django stuff:
70+
*.log
71+
local_settings.py
72+
db.sqlite3
73+
db.sqlite3-journal
74+
75+
# Flask stuff:
76+
instance/
77+
.webassets-cache
78+
79+
# Scrapy stuff:
80+
.scrapy
81+
82+
# Sphinx documentation
83+
docs/_build/
84+
docs/docs/_build/
85+
86+
# PyBuilder
87+
target/
88+
89+
# Jupyter Notebook
90+
.ipynb_checkpoints
91+
92+
# IPython
93+
profile_default/
94+
ipython_config.py
95+
96+
# pyenv
97+
.python-version
98+
99+
# pipenv
100+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
101+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
102+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
103+
# install all needed dependencies.
104+
#Pipfile.lock
105+
106+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
107+
__pypackages__/
108+
109+
# Celery stuff
110+
celerybeat-schedule
111+
celerybeat.pid
112+
113+
# SageMath parsed files
114+
*.sage.py
115+
116+
# Environments
117+
.env
118+
.envrc
119+
.venv*
120+
venv*
121+
env/
122+
ENV/
123+
env.bak/
124+
125+
# Spyder project settings
126+
.spyderproject
127+
.spyproject
128+
129+
# Rope project settings
130+
.ropeproject
131+
132+
# mkdocs documentation
133+
/site
134+
135+
# mypy
136+
.mypy_cache/
137+
.mypy_cache_test/
138+
.dmypy.json
139+
dmypy.json
140+
141+
# Pyre type checker
142+
.pyre/
143+
144+
# macOS display setting files
145+
.DS_Store
146+
147+
# Wandb directory
148+
wandb/
149+
150+
# asdf tool versions
151+
.tool-versions
152+
/.ruff_cache/
153+
154+
*.pkl
155+
*.bin
156+
157+
# integration test artifacts
158+
data_map*
159+
\[('_type', 'fake'), ('stop', None)]
160+
161+
# Replit files
162+
*replit*
163+
164+
node_modules
165+
docs/.yarn/
166+
docs/node_modules/
167+
docs/.docusaurus/
168+
docs/.cache-loader/
169+
docs/_dist
170+
docs/api_reference/*api_reference.rst
171+
docs/api_reference/_build
172+
docs/api_reference/*/
173+
!docs/api_reference/_static/
174+
!docs/api_reference/templates/
175+
!docs/api_reference/themes/
176+
docs/docs/build
177+
docs/docs/node_modules
178+
docs/docs/yarn.lock
179+
_dist
180+
docs/docs/templates
181+
182+
prof
183+
virtualenv/

0 commit comments

Comments
 (0)