Skip to content

Commit fc27334

Browse files
committed
Merge branch 'main' into tkp/tg
Signed-off-by: Tim Paine <3105306+timkpaine@users.noreply.github.com>
2 parents 545c325 + fc8a106 commit fc27334

13 files changed

Lines changed: 182 additions & 59 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: 9be318c
2+
_commit: 0fa24ba
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: false
55
add_extension: python

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Team Review
2-
* @neejweej @timkpaine @ptomecek
2+
* @timkpaine @ptomecek
33

44
# Administrative
55
LICENSE @ptomecek @timkpaine
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 csp-bot | 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/dependabot.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,16 @@ updates:
33
- package-ecosystem: "github-actions"
44
directory: "/"
55
schedule:
6-
interval: "weekly"
6+
interval: "monthly"
77
labels:
88
- "part: github_actions"
99

1010
- package-ecosystem: "pip"
1111
directory: "/"
1212
schedule:
1313
interval: "monthly"
14+
cooldown:
15+
default-days: 7
1416
labels:
1517
- "lang: python"
1618
- "part: dependencies"

.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: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
python-version: ["3.11"]
3434

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

3838
- uses: actions-ext/python/setup@main
3939
with:
@@ -55,26 +55,34 @@ jobs:
5555
run: make coverage
5656

5757
- name: Upload test results (Python)
58-
uses: actions/upload-artifact@v7
58+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
5959
with:
6060
name: test-results-${{ matrix.os }}-${{ matrix.python-version }}
6161
path: junit.xml
6262
if: ${{ always() }}
6363

6464
- name: Publish Unit Test Results
65-
uses: EnricoMi/publish-unit-test-result-action@v2
65+
uses: EnricoMi/publish-unit-test-result-action@c950f6fb443cb5af20a377fd0dfaa78838901040 # v2
6666
with:
6767
files: '**/junit.xml'
6868

6969
- name: Upload coverage
70-
uses: codecov/codecov-action@v5
70+
uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6.0.1
7171
with:
7272
token: ${{ secrets.CODECOV_TOKEN }}
7373

7474
- name: Make dist
7575
run: make dist
7676

77-
- uses: actions/upload-artifact@v7
77+
- uses: actions-ext/python/test-wheel@main
78+
with:
79+
module: csp_bot
80+
81+
- uses: actions-ext/python/test-sdist@main
82+
with:
83+
module: csp_bot
84+
85+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
7886
with:
7987
name: dist-${{matrix.os}}
8088
path: dist

.github/workflows/wiki.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ jobs:
2020
deploy:
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v6
23+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2424
- run: cp README.md docs/wiki/Home.md
25-
- uses: Andrew-Chen-Wang/github-wiki-action@v5
25+
- uses: Andrew-Chen-Wang/github-wiki-action@64efa0a9436db17670a2259e0ac249d6f08bb352 # v5
2626
with:
2727
path: docs/wiki

.gitignore

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ __pycache__/
55

66
# C extensions
77
*.a
8+
*.o
9+
*.dSYM
810
*.so
911
*.obj
1012
*.dll
@@ -13,6 +15,7 @@ __pycache__/
1315

1416
# Rust
1517
target
18+
target-capi
1619

1720
# Distribution / packaging
1821
.Python
@@ -112,11 +115,12 @@ dmypy.json
112115
/site
113116
index.md
114117
docs/_build/
115-
docs/src/_build/
116118
docs/api
117-
docs/index.md
118119
docs/html
120+
docs/index.md
119121
docs/jupyter_execute
122+
docs/src/_build/
123+
docs/superpowers
120124
index.md
121125

122126
# JS
@@ -136,12 +140,12 @@ csp_bot/extension
136140
csp_bot/nbextension
137141
csp_bot/labextension
138142

143+
# Emscripten SDK (locally installed)
144+
emsdk
145+
139146
# Mac
140147
.DS_Store
141148

142-
# Rust
143-
target
144-
145149
# Hydra
146150
outputs/
147151
multirun/
@@ -150,6 +154,7 @@ multirun/
150154
ROADMAP.md
151155
AGENTS.md
152156
.github/hooks/sdlc.json
157+
.superpowers
153158

154159
# Secrets
155160
.discord_token

0 commit comments

Comments
 (0)