Skip to content

Commit f710988

Browse files
Update from copier (2025-11-30T05:01:58)
Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 2a274af commit f710988

5 files changed

Lines changed: 41 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: 3a223c6
2+
_commit: 55f9353
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: true
55
add_extension: python

.github/workflows/build.yaml

Lines changed: 31 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:
@@ -56,6 +56,7 @@ jobs:
5656
- name: Build
5757
run: make build
5858

59+
<<<<<<< before updating
5960
# - name: Test
6061
# run: make coverage
6162
#
@@ -83,3 +84,32 @@ jobs:
8384
# with:
8485
# name: dist-${{matrix.os}}
8586
# path: dist
87+
=======
88+
- name: Test
89+
run: make coverage
90+
91+
- name: Upload test results (Python)
92+
uses: actions/upload-artifact@v5
93+
with:
94+
name: test-results-${{ matrix.os }}-${{ matrix.python-version }}
95+
path: junit.xml
96+
if: ${{ always() }}
97+
98+
- name: Publish Unit Test Results
99+
uses: EnricoMi/publish-unit-test-result-action@v2
100+
with:
101+
files: '**/junit.xml'
102+
103+
- name: Upload coverage
104+
uses: codecov/codecov-action@v5
105+
with:
106+
token: ${{ secrets.CODECOV_TOKEN }}
107+
108+
- name: Make dist
109+
run: make dist
110+
111+
- uses: actions/upload-artifact@v5
112+
with:
113+
name: dist-${{matrix.os}}
114+
path: dist
115+
>>>>>>> after updating

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
docs:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v5
14+
- uses: actions/checkout@v6
1515
- uses: actions-ext/python/setup@main
1616
- run: |
1717
sudo apt-get update

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ physics_workload/extension
146146
# Jupyter
147147
.ipynb_checkpoints
148148
.autoversion
149+
Untitled*.ipynb
149150
!physics_workload/extension/physics_workload.json
150151
!physics_workload/extension/install.json
151152
physics_workload/nbextension

pyproject.toml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@ description = "Tool for managing staff teaching time."
99
readme = "README.md"
1010
license = { text = "Apache-2.0" }
1111
version = "0.1.0"
12+
<<<<<<< before updating
1213
requires-python = ">=3.11"
14+
=======
15+
requires-python = ">=3.10"
16+
>>>>>>> after updating
1317
keywords = []
1418

1519
classifiers = [
@@ -18,11 +22,11 @@ classifiers = [
1822
"Programming Language :: Python :: Implementation :: CPython",
1923
"Programming Language :: Python :: Implementation :: PyPy",
2024
"Programming Language :: Python :: 3",
21-
"Programming Language :: Python :: 3.9",
2225
"Programming Language :: Python :: 3.10",
2326
"Programming Language :: Python :: 3.11",
2427
"Programming Language :: Python :: 3.12",
2528
"Programming Language :: Python :: 3.13",
29+
"Programming Language :: Python :: 3.14",
2630
]
2731

2832
dependencies = [
@@ -51,11 +55,11 @@ develop = [
5155
"check-manifest",
5256
"codespell>=2.4,<2.5",
5357
"hatchling",
54-
"mdformat>=0.7.22,<0.8",
58+
"mdformat>=0.7.22,<1.1",
5559
"mdformat-tables>=1",
5660
"pytest",
5761
"pytest-cov",
58-
"ruff",
62+
"ruff>=0.9,<0.15",
5963
"twine",
6064
"uv",
6165
"wheel",

0 commit comments

Comments
 (0)