Skip to content

Commit

Permalink
Merge pull request #1480 from RogerHaase/1479-typeerror
Browse files Browse the repository at this point in the history
swapping python versions in ci.yml should produce TypeError; #1479
  • Loading branch information
RogerHaase authored Jul 24, 2023
2 parents dca16e8 + 24cd193 commit dd8a476
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.9
- name: Lint with flake8
run: |
pip install flake8
Expand All @@ -39,7 +39,7 @@ jobs:
matrix:
include:
- os: macos-latest
python-version: '3.9'
python-version: '3.8'
toxenv: py38-fuse2
- os: windows-latest
python-version: '3.11'
Expand Down
3 changes: 3 additions & 0 deletions src/moin/cli/maint/modify_item.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
MoinMoin CLI - get an item revision from the wiki, put it back into the wiki.
"""

# see #1479, remove after dropping support for Python 3.8
from __future__ import annotations

from collections import defaultdict
from dataclasses import dataclass, field
import json
Expand Down

0 comments on commit dd8a476

Please sign in to comment.