Skip to content

Commit ca37e97

Browse files
Update from copier (2026-05-21T19:31:39)
Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 463d0b9 commit ca37e97

4 files changed

Lines changed: 48 additions & 6 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: 9a153d8
2+
_commit: b5fb449
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: false
55
add_extension: python

.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/workflows/build.yaml

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
cibuildwheel:
3232
- "cp311"
3333
steps:
34+
<<<<<<< before updating
3435
- uses: actions/checkout@v6
3536
with:
3637
submodules: 'true'
@@ -50,12 +51,16 @@ jobs:
5051
key: cache-${{ runner.os }}-
5152
restore-keys: cache-${{ runner.os }}-
5253
if: ${{ runner.os == 'Windows' }}
54+
=======
55+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
56+
>>>>>>> after updating
5357

5458
- uses: actions-ext/python/setup@main
5559
with:
5660
version: ${{ matrix.python-version }}
5761

5862
- name: Install dependencies
63+
<<<<<<< before updating
5964
run: pip install cibuildwheel
6065

6166
- name: Python Wheel Steps (linux)
@@ -89,6 +94,38 @@ jobs:
8994
- name: Install wheel (mac/linux)
9095
run: python -m pip install dist/*.whl
9196
if: ${{ runner.os != 'Windows' }}
97+
=======
98+
run: make develop
99+
100+
- name: Lint
101+
run: make lint
102+
103+
- name: Checks
104+
run: make checks
105+
106+
- name: Build
107+
run: make build
108+
109+
- name: Test
110+
run: make coverage
111+
112+
- name: Upload test results (Python)
113+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
114+
with:
115+
name: test-results-${{ matrix.os }}-${{ matrix.python-version }}
116+
path: junit.xml
117+
if: ${{ always() }}
118+
119+
- name: Publish Unit Test Results
120+
uses: EnricoMi/publish-unit-test-result-action@c950f6fb443cb5af20a377fd0dfaa78838901040 # v2
121+
with:
122+
files: '**/junit.xml'
123+
124+
- name: Upload coverage
125+
uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6.0.1
126+
with:
127+
token: ${{ secrets.CODECOV_TOKEN }}
128+
>>>>>>> after updating
92129

93130
- name: Install wheel (windows)
94131
run: python -m pip install -U (Get-ChildItem .\dist\*.whl | Select-Object -Expand FullName)
@@ -100,7 +137,7 @@ jobs:
100137
- name: Test Wheel
101138
run: python -m pytest -vvv systemc/tests
102139

103-
- uses: actions/upload-artifact@v7
140+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
104141
with:
105142
name: dist-${{matrix.os}}
106143
path: dist

.gitignore

Lines changed: 6 additions & 3 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
*.a
1012
*.o
@@ -16,6 +18,7 @@ __pycache__/
1618

1719
# Rust
1820
target
21+
target-capi
1922

2023
# Distribution / packaging
2124
.Python
@@ -140,12 +143,12 @@ systemc/extension
140143
systemc/nbextension
141144
systemc/labextension
142145

146+
# Emscripten SDK (locally installed)
147+
emsdk
148+
143149
# Mac
144150
.DS_Store
145151

146-
# Rust
147-
target
148-
149152
# Hydra
150153
outputs/
151154
multirun/

0 commit comments

Comments
 (0)