Skip to content

Commit ad62732

Browse files
author
Gerit Wagner
committed
format
1 parent ee1768b commit ad62732

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/evaluate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,4 @@ jobs:
8383
git add output/*
8484
git add docs/_static/evaluation_total.png*
8585
git commit -m "Update evaluation ($(date +'%Y-%m-%d-%H-%M'))"
86-
git push origin main
86+
git push origin main

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,24 @@ jobs:
1313
runs-on: ${{ matrix.platform }}
1414
steps:
1515
- uses: actions/checkout@v4
16-
16+
1717
- name: Set up Python ${{ matrix.python-version }}
1818
uses: actions/setup-python@v4
1919
with:
2020
python-version: ${{ matrix.python-version }}
21-
21+
2222
- name: Install uv and dependencies
2323
run: |
2424
pip install uv
2525
uv venv
2626
uv pip install -e .[dev] || echo "No dev extra"
2727
echo "Dependencies installed successfully"
28-
28+
2929
- name: Setup git
3030
run: |
3131
git config --global user.name "CoLRev update"
3232
git config --global user.email "actions@users.noreply.github.com"
3333
git config --global url.https://github.com/.insteadOf git://github.com/
34-
34+
3535
- name: Run tests
3636
run: uv run pytest

docs/conf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import os
22
import sys
3+
from datetime import datetime
34

45
sys.path.insert(0, os.path.abspath("../../bib_dedupe"))
56

@@ -12,7 +13,7 @@
1213
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
1314

1415
project = "BibDedupe"
15-
copyright = "2024, Gerit Wagner"
16+
copyright = f"{datetime.now().year}, Gerit Wagner"
1617
author = "Gerit Wagner"
1718
release = "0.6.0"
1819

output/current_results.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,3 @@
104104
| bib-dedupe | 0 | 1 | 2 | 9 | 0 | 1 | 0.3333 | 1 | 0.5 | 0:00:00 |
105105
| asysd | 9 | 3 | 0 | 0 | 1 | 0 | 1 | 0.25 | 0.4 | 0:00:02 |
106106
| buhos | 2 | 1 | 2 | 7 | 0.2222 | 0.7778 | 0.3333 | 0.3333 | 0.3333 | 0:00:00 |
107-

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,4 @@ line-length = 160
8787

8888
[build-system]
8989
requires = ["hatchling"]
90-
build-backend = "hatchling.build"
90+
build-backend = "hatchling.build"

0 commit comments

Comments
 (0)