Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .copier-answers.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier
_commit: 3a223c6
_commit: 61fe43f
_src_path: https://github.com/python-project-templates/base.git
add_docs: true
add_extension: python
Expand Down
32 changes: 31 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
python-version: ["3.12"]

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: actions-ext/python/setup@main
with:
Expand All @@ -53,6 +53,7 @@ jobs:
- name: Build
run: make build

<<<<<<< before updating
# - name: Test
# run: make coverage
#
Expand All @@ -72,3 +73,32 @@ jobs:
# uses: codecov/codecov-action@v5
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
=======
- name: Test
run: make coverage

- name: Upload test results (Python)
uses: actions/upload-artifact@v5
with:
name: test-results-${{ matrix.os }}-${{ matrix.python-version }}
path: junit.xml
if: ${{ always() }}

- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
with:
files: '**/junit.xml'

- name: Upload coverage
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}

- name: Make dist
run: make dist

- uses: actions/upload-artifact@v5
with:
name: dist-${{matrix.os}}
path: dist
>>>>>>> after updating
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions-ext/python/setup@main
- run: |
sudo apt-get update
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ physics_workload/extension
# Jupyter
.ipynb_checkpoints
.autoversion
Untitled*.ipynb
!physics_workload/extension/physics_workload.json
!physics_workload/extension/install.json
physics_workload/nbextension
Expand Down
10 changes: 7 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ description = "Tool for managing staff teaching time."
readme = "README.md"
license = { text = "Apache-2.0" }
version = "0.1.0"
<<<<<<< before updating
requires-python = ">=3.11"
=======
requires-python = ">=3.10"
>>>>>>> after updating
keywords = []

classifiers = [
Expand All @@ -18,11 +22,11 @@ classifiers = [
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]

dependencies = [
Expand Down Expand Up @@ -54,11 +58,11 @@ develop = [
"check-manifest",
"codespell>=2.4,<2.5",
"hatchling",
"mdformat>=0.7.22,<0.8",
"mdformat>=0.7.22,<1.1",
"mdformat-tables>=1",
"pytest",
"pytest-cov",
"ruff",
"ruff>=0.9,<0.15",
"twine",
"uv",
"wheel",
Expand Down