Skip to content

Commit 0585289

Browse files
Merge pull request #77 from pycroscopy/main
update my branch
2 parents 0e7d16b + 4ceef8c commit 0585289

25 files changed

Lines changed: 2015 additions & 605 deletions

.DS_Store

6 KB
Binary file not shown.

.github/workflows/deploy.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Deploy MyST Site
2+
on:
3+
push:
4+
branches: [main]
5+
workflow_dispatch:
6+
7+
permissions:
8+
contents: read
9+
pages: write
10+
id-token: write
11+
12+
concurrency:
13+
group: "pages"
14+
cancel-in-progress: false
15+
16+
jobs:
17+
deploy:
18+
environment:
19+
name: github-pages
20+
url: ${{ steps.deployment.outputs.page_url }}
21+
runs-on: ubuntu-latest
22+
steps:
23+
- uses: actions/checkout@v4
24+
- name: Setup Node.js
25+
uses: actions/setup-node@v4
26+
with:
27+
node-version: '20'
28+
- name: Setup MyST
29+
run: npm install -g mystmd
30+
- name: Build site
31+
env:
32+
BASE_URL: /asyncroscopy
33+
run: |
34+
cd docs
35+
myst build --html
36+
touch _build/html/.nojekyll
37+
- name: Upload artifact
38+
uses: actions/upload-pages-artifact@v3
39+
with:
40+
path: 'docs/_build/html'
41+
- name: Deploy to GitHub Pages
42+
id: deployment
43+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,5 +206,9 @@ marimo/_static/
206206
marimo/_lsp/
207207
__marimo__/
208208

209+
.DS_Store
210+
209211
PythonPackages-AS-1.15/
210-
llm-context/
212+
llm-context/
213+
# MyST build outputs
214+
_build

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ See - docs/dev_guide.md
4949
### Core installation (simulation mode)
5050

5151
```bash
52-
pip install .
52+
pip install --find-links ./stubs -e .
5353
```
5454

5555
or with `uv`:

0 commit comments

Comments
 (0)