Skip to content

Commit 14ca688

Browse files
Update from copier (2026-02-08T05:28:22)
Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 3d818b2 commit 14ca688

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: 06be9d8
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:
@@ -53,6 +53,7 @@ jobs:
5353
- name: Build
5454
run: make build
5555

56+
<<<<<<< before updating
5657
# - name: Test
5758
# run: make coverage
5859
#
@@ -72,3 +73,32 @@ jobs:
7273
# uses: codecov/codecov-action@v5
7374
# with:
7475
# token: ${{ secrets.CODECOV_TOKEN }}
76+
=======
77+
- name: Test
78+
run: make coverage
79+
80+
- name: Upload test results (Python)
81+
uses: actions/upload-artifact@v6
82+
with:
83+
name: test-results-${{ matrix.os }}-${{ matrix.python-version }}
84+
path: junit.xml
85+
if: ${{ always() }}
86+
87+
- name: Publish Unit Test Results
88+
uses: EnricoMi/publish-unit-test-result-action@v2
89+
with:
90+
files: '**/junit.xml'
91+
92+
- name: Upload coverage
93+
uses: codecov/codecov-action@v5
94+
with:
95+
token: ${{ secrets.CODECOV_TOKEN }}
96+
97+
- name: Make dist
98+
run: make dist
99+
100+
- uses: actions/upload-artifact@v6
101+
with:
102+
name: dist-${{matrix.os}}
103+
path: dist
104+
>>>>>>> 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 = [
@@ -54,11 +58,11 @@ develop = [
5458
"check-manifest",
5559
"codespell>=2.4,<2.5",
5660
"hatchling",
57-
"mdformat>=0.7.22,<0.8",
61+
"mdformat>=0.7.22,<1.1",
5862
"mdformat-tables>=1",
5963
"pytest",
6064
"pytest-cov",
61-
"ruff",
65+
"ruff>=0.9,<0.15",
6266
"twine",
6367
"uv",
6468
"wheel",

0 commit comments

Comments
 (0)