Skip to content

Commit d06d605

Browse files
Update from copier (2026-05-03T05:59:41)
Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 3d818b2 commit d06d605

10 files changed

Lines changed: 237 additions & 86 deletions

File tree

.copier-answers.yaml

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
2-
_commit: 3a223c6
2+
_commit: e392033
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: true
55
add_extension: python
Lines changed: 20 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,29 @@
11
---
2-
name: Bug report
3-
about: Create a report to help us improve
4-
title: ''
5-
labels: ''
2+
name: Bug Report
3+
about: Report a bug to help us improve
4+
title: '[BUG] '
5+
labels: 'type: bug'
66
assignees: ''
7-
87
---
98

10-
**Describe the bug**
11-
A clear and concise description of what the bug is.
12-
13-
**To Reproduce**
14-
Steps to reproduce the behavior:
15-
1. Go to '...'
16-
2. Click on '....'
17-
3. Scroll down to '....'
18-
4. See error
9+
**Description**
10+
A clear and concise description of the bug.
1911

20-
**Expected behavior**
21-
A clear and concise description of what you expected to happen.
12+
**Steps to Reproduce**
13+
1.
14+
2.
15+
3.
2216

23-
**Screenshots**
24-
If applicable, add screenshots to help explain your problem.
17+
**Expected Behavior**
18+
What you expected to happen.
2519

26-
**Desktop (please complete the following information):**
27-
- OS: [e.g. iOS]
28-
- Browser [e.g. chrome, safari]
29-
- Version [e.g. 22]
20+
**Actual Behavior**
21+
What actually happened. Include full error messages or tracebacks if available.
3022

31-
**Smartphone (please complete the following information):**
32-
- Device: [e.g. iPhone6]
33-
- OS: [e.g. iOS8.1]
34-
- Browser [e.g. stock browser, safari]
35-
- Version [e.g. 22]
23+
**Environment**
24+
- OS: [e.g. Ubuntu 22.04, macOS 14.0, Windows 11]
25+
- Python version: [e.g. 3.11.5] (`python --version`)
26+
- Package version: (`pip show physics-workload | grep Version`)
3627

37-
**Additional context**
38-
Add any other context about the problem here.
28+
**Additional Context**
29+
Add any other relevant context, logs, or screenshots.
Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
11
---
2-
name: Feature request
3-
about: Suggest an idea for this project
4-
title: ''
5-
labels: ''
2+
name: Feature Request
3+
about: Suggest a new feature or improvement
4+
title: '[FEATURE] '
5+
labels: 'type: enhancement'
66
assignees: ''
7-
87
---
98

10-
**Is your feature request related to a problem? Please describe.**
11-
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
9+
**Problem Statement**
10+
A clear description of the problem this feature would solve. Ex. "I'm always frustrated when [...]"
1211

13-
**Describe the solution you'd like**
14-
A clear and concise description of what you want to happen.
12+
**Proposed Solution**
13+
A clear description of the desired behavior or feature.
1514

16-
**Describe alternatives you've considered**
17-
A clear and concise description of any alternative solutions or features you've considered.
15+
**Alternatives Considered**
16+
Any alternative solutions or workarounds you've considered.
1817

19-
**Additional context**
20-
Add any other context or screenshots about the feature request here.
18+
**Additional Context**
19+
Add any other context, mockups, or examples.

.github/ISSUE_TEMPLATE/question.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
name: Question
3+
about: Ask a question about usage or behavior
4+
title: '[QUESTION] '
5+
labels: 'tag: question'
6+
assignees: ''
7+
---
8+
9+
**Question**
10+
A clear and concise description of your question.
11+
12+
**Context**
13+
What are you trying to accomplish? Include relevant code snippets, configuration, or links to documentation you've already consulted.
14+
15+
**Environment**
16+
If relevant, include your environment details (OS, language versions, package version).

.github/pull_request_template.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
## Description
2+
3+
Brief description of the changes in this PR.
4+
5+
## Type of Change
6+
7+
- [ ] Bug fix
8+
- [ ] New feature
9+
- [ ] Documentation update
10+
- [ ] Refactor / code cleanup
11+
- [ ] CI / build configuration
12+
- [ ] Other (describe below)
13+
14+
## Checklist
15+
16+
- [ ] Linting passes (`make lint`)
17+
- [ ] Tests pass (`make test`)
18+
- [ ] New tests added for new functionality
19+
- [ ] Documentation updated (if applicable)
20+
- [ ] Changelog / version bump (if applicable)

.github/workflows/build.yaml

Lines changed: 39 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
python-version: ["3.12"]
3434

3535
steps:
36-
- uses: actions/checkout@v5
36+
- uses: actions/checkout@v6
3737

3838
- uses: actions-ext/python/setup@main
3939
with:
@@ -53,6 +53,7 @@ jobs:
5353
- name: Build
5454
run: make build
5555

56+
<<<<<<< before updating
5657
# - name: Test
5758
# run: make coverage
5859
#
@@ -72,3 +73,40 @@ jobs:
7273
# uses: codecov/codecov-action@v5
7374
# with:
7475
# token: ${{ secrets.CODECOV_TOKEN }}
76+
=======
77+
- name: Test
78+
run: make coverage
79+
80+
- name: Upload test results (Python)
81+
uses: actions/upload-artifact@v7
82+
with:
83+
name: test-results-${{ matrix.os }}-${{ matrix.python-version }}
84+
path: junit.xml
85+
if: ${{ always() }}
86+
87+
- name: Publish Unit Test Results
88+
uses: EnricoMi/publish-unit-test-result-action@v2
89+
with:
90+
files: '**/junit.xml'
91+
92+
- name: Upload coverage
93+
uses: codecov/codecov-action@v6
94+
with:
95+
token: ${{ secrets.CODECOV_TOKEN }}
96+
97+
- name: Make dist
98+
run: make dist
99+
100+
- uses: actions-ext/python/test-wheel@main
101+
with:
102+
module: physics_workload
103+
104+
- uses: actions-ext/python/test-sdist@main
105+
with:
106+
module: physics_workload
107+
108+
- uses: actions/upload-artifact@v7
109+
with:
110+
name: dist-${{matrix.os}}
111+
path: dist
112+
>>>>>>> after updating

.github/workflows/docs.yaml

Lines changed: 37 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,57 @@
11
name: Publish Docs
22

33
on:
4-
push:
5-
branches:
6-
- main
4+
workflow_run:
5+
workflows: ["Build Status"]
6+
branches: [main]
7+
types: [completed]
78
workflow_dispatch:
9+
810
permissions:
11+
actions: read
912
contents: write
13+
1014
jobs:
1115
docs:
1216
runs-on: ubuntu-latest
17+
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
1318
steps:
14-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
1520
- uses: actions-ext/python/setup@main
21+
<<<<<<< before updating
1622
- run: |
1723
sudo apt-get update
1824
sudo apt-get install -y libldap2-dev libssl-dev libsasl2-dev
1925
- run: uv pip install .[develop]
2026
- run: uv pip install yardang
27+
=======
28+
29+
- name: Download dist from build
30+
uses: actions/download-artifact@v8
31+
with:
32+
pattern: dist-ubuntu-latest*
33+
merge-multiple: true
34+
path: dist
35+
run-id: ${{ github.event.workflow_run.id }}
36+
github-token: ${{ secrets.GITHUB_TOKEN }}
37+
repository: ${{ github.repository }}
38+
if: github.event_name == 'workflow_run'
39+
40+
- name: Install from wheel
41+
run: |
42+
uv pip install dist/*.whl --target .
43+
uv pip install yardang
44+
if: github.event_name == 'workflow_run'
45+
46+
- name: Install from source (manual trigger)
47+
run: |
48+
uv pip install .[develop]
49+
uv pip install yardang
50+
if: github.event_name == 'workflow_dispatch'
51+
52+
>>>>>>> after updating
2153
- run: yardang build
54+
2255
- uses: peaceiris/actions-gh-pages@v4
2356
with:
2457
publish_branch: gh-pages

.gitignore

Lines changed: 25 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ __pycache__/
1111
*.exp
1212
*.lib
1313

14+
# Rust
15+
target
16+
1417
# Distribution / packaging
1518
.Python
1619
build/
@@ -55,26 +58,12 @@ junit.xml
5558
.hypothesis/
5659
.pytest_cache/
5760

58-
# Translations
59-
*.mo
60-
*.pot
61-
62-
# Django stuff:
61+
# Django
6362
*.log
6463
local_settings.py
6564
db.sqlite3
6665
db.sqlite3-journal
6766

68-
# Flask stuff:
69-
instance/
70-
.webassets-cache
71-
72-
# Scrapy stuff:
73-
.scrapy
74-
75-
# PyBuilder
76-
target/
77-
7867
# IPython
7968
profile_default/
8069
ipython_config.py
@@ -85,15 +74,12 @@ ipython_config.py
8574
# pipenv
8675
Pipfile.lock
8776

88-
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
89-
__pypackages__/
90-
91-
# Celery stuff
77+
# Celery
9278
celerybeat-schedule
9379
celerybeat.pid
9480

95-
# SageMath parsed files
96-
*.sage.py
81+
# Airspeed Velocity
82+
.asv
9783

9884
# Environments
9985
.env
@@ -126,11 +112,12 @@ dmypy.json
126112
/site
127113
index.md
128114
docs/_build/
129-
docs/src/_build/
130115
docs/api
131-
docs/index.md
132116
docs/html
117+
docs/index.md
133118
docs/jupyter_execute
119+
docs/src/_build/
120+
docs/superpowers
134121
index.md
135122

136123
# JS
@@ -141,13 +128,12 @@ js/node_modules
141128
js/test-results
142129
js/playwright-report
143130
js/*.tgz
144-
physics_workload/extension
145131

146132
# Jupyter
147133
.ipynb_checkpoints
148134
.autoversion
149-
!physics_workload/extension/physics_workload.json
150-
!physics_workload/extension/install.json
135+
Untitled*.ipynb
136+
physics_workload/extension
151137
physics_workload/nbextension
152138
physics_workload/labextension
153139

@@ -157,8 +143,20 @@ physics_workload/labextension
157143
# Rust
158144
target
159145

146+
<<<<<<< before updating
160147
# Project
161148
staticfiles/
162149
*.csv
163150
*.xlsx
164-
*/migrations/*
151+
*/migrations/*
152+
=======
153+
# Hydra
154+
outputs/
155+
multirun/
156+
157+
# AI
158+
ROADMAP.md
159+
AGENTS.md
160+
.github/hooks/sdlc.json
161+
.superpowers
162+
>>>>>>> after updating

Makefile

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,24 @@ lints: lint
4343
fix: fix-py fix-docs ## run all autoformatters
4444
format: fix
4545

46+
<<<<<<< before updating
47+
=======
48+
################
49+
# Other Checks #
50+
################
51+
.PHONY: check-dist check-types checks check
52+
53+
check-dist: ## check python sdist and wheel with check-dist
54+
check-dist -v
55+
56+
check-types: ## check python types with ty
57+
ty check --python $$(which python)
58+
59+
checks: check-dist
60+
61+
# Alias
62+
check: checks
63+
>>>>>>> after updating
4664

4765
#########
4866
# TESTS #

0 commit comments

Comments
 (0)