Skip to content

Commit 08aee47

Browse files
authored
Merge pull request #129 from MridulS/bumptox
copier bump for pypi publish
2 parents 2a219ea + c8f49bd commit 08aee47

File tree

6 files changed

+55
-5
lines changed

6 files changed

+55
-5
lines changed

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
2-
_commit: 18e7005
2+
_commit: cdbfd9c
33
_src_path: gh:scipp/copier_template
44
description: Data reduction for NMX at the European Spallation Source.
55
max_python: '3.13'

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
if: github.event_name == 'release' && github.event.action == 'published'
6969
steps:
7070
- uses: actions/download-artifact@v4
71-
- uses: pypa/gh-action-pypi-publish@v1.8.14
71+
- uses: pypa/gh-action-pypi-publish@v1.12.4
7272

7373
upload_conda:
7474
name: Deploy Conda

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ venv
1414
.venv
1515

1616
# Caches
17+
*.DS_Store
1718
.clangd/
1819
*.ipynb_checkpoints
1920
__pycache__/

docs/index.md

Lines changed: 34 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,42 @@
1-
# ESSnmx
1+
:::{image} _static/logo.svg
2+
:class: only-light
3+
:alt: ESSnmx
4+
:width: 60%
5+
:align: center
6+
:::
7+
:::{image} _static/logo-dark.svg
8+
:class: only-dark
9+
:alt: ESSnmx
10+
:width: 60%
11+
:align: center
12+
:::
213

3-
<span style="font-size:1.2em;font-style:italic;color:#5a5a5a">
14+
```{raw} html
15+
<style>
16+
.transparent {display: none; visibility: hidden;}
17+
.transparent + a.headerlink {display: none; visibility: hidden;}
18+
</style>
19+
```
20+
21+
```{role} transparent
22+
```
23+
24+
# {transparent}`ESSnmx`
25+
26+
<span style="font-size:1.2em;font-style:italic;color:var(--pst-color-text-muted)">
427
Data reduction for NMX at the European Spallation Source.
528
</br></br>
629
</span>
730

31+
:::{include} user-guide/installation.md
32+
:heading-offset: 1
33+
:::
34+
35+
## Get in touch
36+
37+
- If you have questions that are not answered by these documentation pages, ask on [discussions](https://github.com/scipp/essnmx/discussions). Please include a self-contained reproducible example if possible.
38+
- Report bugs (including unclear, missing, or wrong documentation!), suggest features or view the source code [on GitHub](https://github.com/scipp/essnmx).
39+
840
```{toctree}
941
---
1042
hidden:

docs/user-guide/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22

33
```{toctree}
44
---
5-
maxdepth: 2
5+
maxdepth: 1
66
---
77
88
workflow
99
workflow_chunk
1010
scaling_workflow
11+
installation
1112
```

docs/user-guide/installation.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Installation
2+
3+
To install ESSnmx and all of its dependencies, use
4+
5+
`````{tab-set}
6+
````{tab-item} pip
7+
```sh
8+
pip install essnmx
9+
```
10+
````
11+
````{tab-item} conda
12+
```sh
13+
conda install -c conda-forge -c scipp essnmx
14+
```
15+
````
16+
`````

0 commit comments

Comments
 (0)