Skip to content

Commit 04b27a3

Browse files
Update from copier (2025-06-17T18:24:45)
1 parent fd30947 commit 04b27a3

File tree

9 files changed

+90
-106
lines changed

9 files changed

+90
-106
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
2-
_commit: d56cb12
2+
_commit: 5c63cb2
33
_src_path: https://github.com/python-project-templates/base.git
44
add_extension: python
55

.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

.github/dependabot.yml renamed to .github/dependabot.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,3 @@ updates:
1414
labels:
1515
- "lang: python"
1616
- "part: dependencies"
17-

.github/workflows/build.yaml

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
name: Build Status
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
tags:
8+
- v*
9+
paths-ignore:
10+
- LICENSE
11+
- README.md
12+
pull_request:
13+
branches:
14+
- main
15+
workflow_dispatch:
16+
17+
concurrency:
18+
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
19+
cancel-in-progress: true
20+
21+
permissions:
22+
contents: read
23+
checks: write
24+
pull-requests: write
25+
26+
jobs:
27+
build:
28+
runs-on: ${{ matrix.os }}
29+
30+
strategy:
31+
matrix:
32+
os: [ubuntu-latest]
33+
python-version: ["3.11"]
34+
35+
steps:
36+
- uses: actions/checkout@v4
37+
38+
- uses: actions-ext/python/setup@main
39+
with:
40+
version: ${{ matrix.python-version }}
41+
42+
- name: Install dependencies
43+
run: make develop
44+
45+
- name: Lint
46+
run: make lint
47+
48+
- name: Checks
49+
run: make checks
50+
51+
- name: Build
52+
run: make build
53+
54+
- name: Test
55+
run: make coverage
56+
57+
- name: Upload test results (Python)
58+
uses: actions/upload-artifact@v4
59+
with:
60+
name: test-results-${{ matrix.os }}-${{ matrix.python-version }}
61+
path: junit.xml
62+
if: ${{ always() }}
63+
64+
- name: Publish Unit Test Results
65+
uses: EnricoMi/publish-unit-test-result-action@v2
66+
with:
67+
files: '**/junit.xml'
68+
69+
- name: Upload coverage
70+
uses: codecov/codecov-action@v5
71+
with:
72+
token: ${{ secrets.CODECOV_TOKEN }}
73+
74+
- name: Make dist
75+
run: make dist
76+
77+
- uses: actions/upload-artifact@v4
78+
with:
79+
name: dist-${{matrix.os}}
80+
path: dist

.github/workflows/build.yml

Lines changed: 0 additions & 101 deletions
This file was deleted.
File renamed without changes.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2024 the verilator-python authors
189+
Copyright 2025 the verilator-python authors
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,15 @@
22

33
Python wrapping/binding for verilator
44

5+
<<<<<<< before updating
56
[![Build Status](https://github.com/dau-dev/verilator-python/actions/workflows/build.yml/badge.svg?branch=main&event=push)](https://github.com/dau-dev/verilator-python/actions/workflows/build.yml)
67
[![codecov](https://codecov.io/gh/dau-dev/verilator-python/branch/main/graph/badge.svg)](https://codecov.io/gh/dau-dev/verilator-python)
78
[![License](https://img.shields.io/github/license/dau-dev/verilator-python)](https://github.com/dau-dev/verilator-python)
9+
=======
10+
[![Build Status](https://github.com/dau-dev/verilator/actions/workflows/build.yaml/badge.svg?branch=main&event=push)](https://github.com/dau-dev/verilator/actions/workflows/build.yaml)
11+
[![codecov](https://codecov.io/gh/dau-dev/verilator/branch/main/graph/badge.svg)](https://codecov.io/gh/dau-dev/verilator)
12+
[![License](https://img.shields.io/github/license/dau-dev/verilator)](https://github.com/dau-dev/verilator)
13+
>>>>>>> after updating
814
[![PyPI](https://img.shields.io/pypi/v/verilator.svg)](https://pypi.python.org/pypi/verilator)
915

1016
## Overview

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ replace = 'version = "{new_version}"'
6565

6666
[tool.check-manifest]
6767
ignore = [
68-
".copier-answers.yml",
68+
".copier-answers.yaml",
6969
"Makefile",
7070
"docs/**/*",
7171
]

0 commit comments

Comments
 (0)