Skip to content
Closed
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
MYPY: venv/bin/mypy
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.13
- name: Set up virtualenv
run: python -m venv venv
- name: Install dependencies
Expand All @@ -34,10 +34,10 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python 3.8
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: "3.8"
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip build
Expand Down
Loading