Skip to content

Commit 9dfa3f4

Browse files
authored
Merge pull request #5 from dau-dev/copier-update-2026-06-14T08-42-23
Update from copier (2026-06-14T08:42:23)
2 parents 135148f + d0970f7 commit 9dfa3f4

14 files changed

Lines changed: 128 additions & 83 deletions

.copier-answers.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# Changes here will be overwritten by Copier
2-
_commit: ea9f24b
2+
_commit: 19e0124
33
_src_path: https://github.com/python-project-templates/base.git
4+
add_docs: false
45
add_extension: python
6+
add_wiki: false
57
email: dev@dau.dev
68
github: dau-dev
79
project_description: Python wrapping/binding for verible

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ Makefile linguist-documentation
66
*.md text=auto eol=lf
77
*.py text=auto eol=lf
88
*.toml text=auto eol=lf
9-
*.yml text=auto eol=lf
9+
*.yaml text=auto eol=lf
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 verible | 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).
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +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"
17-

.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)

.gitignore

Lines changed: 47 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,21 @@ __pycache__/
44
*$py.class
55

66
# C extensions
7+
*.a
8+
*.o
9+
*.dSYM
710
*.so
811
*.a
912
*.o
1013
*.d
14+
*.obj
1115
*.dll
16+
*.exp
17+
*.lib
18+
19+
# Rust
20+
target
21+
target-capi
1222

1323
# Distribution / packaging
1424
.Python
@@ -32,8 +42,6 @@ share/python-wheels/
3242
MANIFEST
3343

3444
# PyInstaller
35-
# Usually these files are written by a python script from a template
36-
# before PyInstaller builds the exe, so as to inject date/other infos into it.
3745
*.manifest
3846
*.spec
3947

@@ -56,26 +64,12 @@ junit.xml
5664
.hypothesis/
5765
.pytest_cache/
5866

59-
# Translations
60-
*.mo
61-
*.pot
62-
63-
# Django stuff:
67+
# Django
6468
*.log
6569
local_settings.py
6670
db.sqlite3
6771
db.sqlite3-journal
6872

69-
# Flask stuff:
70-
instance/
71-
.webassets-cache
72-
73-
# Scrapy stuff:
74-
.scrapy
75-
76-
# PyBuilder
77-
target/
78-
7973
# IPython
8074
profile_default/
8175
ipython_config.py
@@ -84,21 +78,14 @@ ipython_config.py
8478
.python-version
8579

8680
# pipenv
87-
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
88-
# However, in case of collaboration, if having platform-specific dependencies or dependencies
89-
# having no cross-platform support, pipenv may install dependencies that don't work, or not
90-
# install all needed dependencies.
91-
#Pipfile.lock
81+
Pipfile.lock
9282

93-
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
94-
__pypackages__/
95-
96-
# Celery stuff
83+
# Celery
9784
celerybeat-schedule
9885
celerybeat.pid
9986

100-
# SageMath parsed files
101-
*.sage.py
87+
# Airspeed Velocity
88+
.asv
10289

10390
# Environments
10491
.env
@@ -128,23 +115,50 @@ dmypy.json
128115
.pyre/
129116

130117
# Documentation
131-
docs/_build/
132118
/site
119+
index.md
120+
docs/_build/
133121
docs/api
122+
docs/html
134123
docs/index.md
135-
_template/labextension
124+
docs/jupyter_execute
125+
docs/src/_build/
126+
docs/superpowers
127+
index.md
128+
129+
# JS
130+
js/coverage
131+
js/dist
132+
js/lib
133+
js/node_modules
134+
js/test-results
135+
js/playwright-report
136+
js/*.tgz
136137

137138
# Jupyter
138139
.ipynb_checkpoints
139140
.autoversion
141+
Untitled*.ipynb
142+
verilator/extension
143+
verilator/nbextension
144+
verilator/labextension
145+
146+
# Emscripten SDK (locally installed)
147+
emsdk
140148

141149
# Mac
142150
.DS_Store
143151

144-
# Rust
145-
target
152+
# Hydra
153+
outputs/
154+
multirun/
155+
156+
# AI
157+
ROADMAP.md
158+
AGENTS.md
159+
.github/hooks/sdlc.json
160+
.superpowers
146161

147162
# Verible
148163
verible/bin/
149164
logs
150-

0 commit comments

Comments
 (0)