Skip to content

Commit 1ca6ca0

Browse files
committed
Administrivia
1 parent fb12aa2 commit 1ca6ca0

2 files changed

Lines changed: 93 additions & 116 deletions

File tree

.gitignore

Lines changed: 92 additions & 91 deletions
Original file line numberDiff line numberDiff line change
@@ -1,117 +1,118 @@
1-
*.bundle.*
2-
lib/
3-
node_modules/
4-
.yarn-packages/
5-
*.egg-info/
6-
.ipynb_checkpoints
7-
*.tsbuildinfo
8-
.venv/
91

10-
# Created by https://www.gitignore.io/api/python
11-
# Edit at https://www.gitignore.io/?templates=python
122

13-
### Python ###
14-
# Byte-compiled / optimized / DLL files
15-
__pycache__/
16-
*.py[cod]
17-
*$py.class
183

19-
# C extensions
20-
*.so
214

22-
# Distribution / packaging
23-
.Python
24-
build/
25-
develop-eggs/
26-
dist/
27-
downloads/
28-
eggs/
29-
.eggs/
30-
lib/
31-
lib64/
32-
parts/
33-
sdist/
34-
var/
35-
wheels/
36-
pip-wheel-metadata/
37-
share/python-wheels/
38-
.installed.cfg
39-
*.egg
40-
MANIFEST
415

42-
# PyInstaller
43-
# Usually these files are written by a python script from a template
44-
# before PyInstaller builds the exe, so as to inject date/other infos into it.
45-
*.manifest
46-
*.spec
476

48-
# Installer logs
49-
pip-log.txt
50-
pip-delete-this-directory.txt
517

52-
# Unit test / coverage reports
53-
htmlcov/
54-
.tox/
55-
.nox/
56-
.coverage
57-
.coverage.*
58-
.cache
59-
nosetests.xml
60-
coverage.xml
61-
*.cover
62-
.hypothesis/
63-
.pytest_cache/
648

65-
# Translations
66-
*.mo
67-
*.pot
689

69-
# Scrapy stuff:
70-
.scrapy
7110

72-
# Sphinx documentation
73-
docs/_build/
7411

75-
# PyBuilder
76-
target/
7712

78-
# pyenv
79-
.python-version
8013

81-
# celery beat schedule file
82-
celerybeat-schedule
8314

84-
# SageMath parsed files
85-
*.sage.py
8615

87-
# Spyder project settings
88-
.spyderproject
89-
.spyproject
9016

91-
# Rope project settings
92-
.ropeproject
9317

94-
# Mr Developer
95-
.mr.developer.cfg
96-
.project
97-
.pydevproject
9818

99-
# mkdocs documentation
100-
/site
10119

102-
# mypy
103-
.mypy_cache/
104-
.dmypy.json
105-
dmypy.json
10620

107-
# Pyre type checker
108-
.pyre/
10921

110-
# OS X stuff
111-
*.DS_Store
11222

113-
# End of https://www.gitignore.io/api/python
11423

24+
# Usually these files are written by a python script from a template
25+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
26+
# Byte-compiled / optimized / DLL files
27+
# C extensions
28+
# Created by https://www.gitignore.io/api/python
29+
# Distribution / packaging
30+
# Edit at https://www.gitignore.io/?templates=python
31+
# End of https://www.gitignore.io/api/python
32+
# Installer logs
33+
# Mr Developer
34+
# OS X stuff
35+
# PyBuilder
36+
# PyInstaller
37+
# Pyre type checker
38+
# Rope project settings
39+
# SageMath parsed files
40+
# Scrapy stuff:
41+
# Sphinx documentation
42+
# Spyder project settings
43+
# Translations
44+
# Unit test / coverage reports
45+
# celery beat schedule file
11546
# jupyterlite
47+
# mkdocs documentation
48+
# mypy
49+
# pyenv
50+
### Python ###
51+
*$py.class
52+
*.DS_Store
53+
*.bundle.*
54+
*.cover
11655
*.doit.db
56+
*.egg
57+
*.egg-info/
58+
*.manifest
59+
*.mo
60+
*.pot
61+
*.py[cod]
62+
*.sage.py
63+
*.so
64+
*.spec
65+
*.tsbuildinfo
66+
.Python
67+
.cache
68+
.coverage
69+
.coverage.*
70+
.dmypy.json
71+
.eggs/
72+
.hypothesis/
73+
.installed.cfg
74+
.ipynb_checkpoints
75+
.mr.developer.cfg
76+
.mypy_cache/
77+
.nox/
78+
.project
79+
.pydevproject
80+
.pyre/
81+
.pytest_cache/
82+
.python-version
83+
.ropeproject
84+
.scrapy
85+
.spyderproject
86+
.spyproject
87+
.tox/
88+
.venv/
89+
.yarn-packages/
90+
/site
91+
/tmp
92+
MANIFEST
93+
__pycache__/
11794
_output
95+
build/
96+
celerybeat-schedule
97+
coverage.xml
98+
develop-eggs/
99+
dist/
100+
dmypy.json
101+
docs/_build/
102+
downloads/
103+
eggs/
104+
htmlcov/
105+
lib/
106+
lib/
107+
lib64/
108+
node_modules/
109+
nosetests.xml
110+
parts/
111+
pip-delete-this-directory.txt
112+
pip-log.txt
113+
pip-wheel-metadata/
114+
sdist/
115+
share/python-wheels/
116+
target/
117+
var/
118+
wheels/

content/Mathics3-extension-demo.ipynb

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"cells": [
3-
{
3+
{
44
"cell_type": "code",
55
"source": "%pip install -v Mathics3 Mathics3-notebook-frontends pymathics-graph ipywidgets lxml pyocr scikit-image unidecode wordcloud\n%load_ext mathics3_kernel.frontend.jupyter",
66
"metadata": {
@@ -17,30 +17,6 @@
1717
}
1818
],
1919
"execution_count": 1
20-
},
21-
{
22-
"data": {
23-
"application/javascript": [
24-
"\n",
25-
" var script = document.createElement('script');\n",
26-
" script.type = 'text/javascript';\n",
27-
" script.src = 'https://cdn.jsdelivr.net/npm/@mathicsorg/mathics-threejs-backend';\n",
28-
" document.head.appendChild(script);\n",
29-
" console.log('Loading mathics-threejs-backend');\n",
30-
" "
31-
],
32-
"text/plain": [
33-
"<IPython.core.display.Javascript object>"
34-
]
35-
},
36-
"metadata": {},
37-
"output_type": "display_data"
38-
}
39-
],
40-
"source": [
41-
"%pip install -v Mathics3 Mathics3-notebook-frontends pymathics-graph ipywidgets lxml pyocr scikit-image unidecode wordcloud\n",
42-
"%load_ext mathics3_kernel.frontend.jupyter"
43-
],
4420
},
4521
{
4622
"cell_type": "code",

0 commit comments

Comments
 (0)