Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
- uses: actions/checkout@v5.0.0
- uses: actions/setup-python@v6.0.0
with:
python-version: 3.11
python-version: 3.13
- name: Run make check
run: |
tools/ci-build.sh
- uses: softprops/action-gh-release@v2.3.2
- uses: softprops/action-gh-release@v2.4.1
if: startsWith(github.ref, 'refs/tags/')
with:
files: dist/*.oxt
Expand All @@ -32,11 +32,11 @@ jobs:
- uses: actions/checkout@v5.0.0
- uses: actions/setup-python@v6.0.0
with:
python-version: 3.11
python-version: 3.13
- name: Run make pack
run: |
tools/ci-build.ps1
- uses: softprops/action-gh-release@v2.3.2
- uses: softprops/action-gh-release@v2.4.1
if: startsWith(github.ref, 'refs/tags/')
with:
files: dist/*.msi
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ check: check-mypy check-flake8 check-pylint check-unit
@echo "make check: ok"

check-mypy: $(PYTHON_OBJECTS) Makefile requirements.txt
env PYTHONPATH=.:tests mypy --python-version 3.11 --strict --no-error-summary $(PYTHON_OBJECTS) && touch $@
env PYTHONPATH=.:tests mypy --python-version 3.13 --strict --no-error-summary $(PYTHON_OBJECTS) && touch $@

check-flake8: $(patsubst %.py,%.flake8,$(PYTHON_OBJECTS))

Expand Down
2 changes: 1 addition & 1 deletion guide/src/hacking.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Create it:

```
python3.11 -m venv ged2dot-env
python3 -m venv ged2dot-env
```

Activate it:
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
coverage==7.10.6
coverage==7.11.0
flake8==7.3.0
mypy==1.17.1
mypy==1.18.2
pygraphviz==1.14
pyinstaller==6.15.0
pylint==3.3.8
pyinstaller==6.16.0
pylint==4.0.2
pyqt6==6.7.1
4 changes: 2 additions & 2 deletions tests/test_ged2dot.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,9 @@ def test_happy(self) -> None:
tree = ET.parse(stream)
root = tree.getroot()
row = root.find("tr")
assert row
assert row is not None
cell = row.find("td")
assert cell
assert cell is not None
img = cell.find("img")
assert img is not None
actual_src = img.attrib.get("src")
Expand Down