Skip to content

Commit d3b8fb8

Browse files
feat: update python version to 3.13
1 parent b81aa26 commit d3b8fb8

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@master
10-
- name: Set up Python 3.8
10+
- name: Set up Python 3.13
1111
uses: actions/setup-python@v2.2.1
1212
with:
13-
python-version: 3.8
13+
python-version: 3.13
1414
- name: Install dependencies
1515
run: pip install -qU setuptools wheel twine
1616
- name: Generating distribution archives

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
SHELL := bash
22
PATH := ./venv/bin:${PATH}
3-
PYTHON = python3.8
3+
PYTHON = python3.13
44
PROJECT = mati
55
isort = isort $(PROJECT) tests setup.py
66
black = black -S -l 79 --target-version py37 $(PROJECT) tests setup.py

requirements-test.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ pytest-cov==2.11.*
33
black==22.3.0
44
isort==5.7.*
55
flake8==3.8.*
6-
mypy==0.790
6+
mypy>=1.0.0
77
pytest-vcr==1.0.2
88
pytest-lazy-fixture==0.6.*

0 commit comments

Comments
 (0)