Skip to content

Commit 70dfd89

Browse files
committed
feat: update python version in settings
1 parent d570ea9 commit 70dfd89

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/coverage-ci.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
coverage:
11-
name: Runs on ubuntu-latest with 3.11.0
11+
name: Runs on ubuntu-latest with 3.13
1212
runs-on: ubuntu-latest
1313

1414
env:
@@ -20,10 +20,10 @@ jobs:
2020
- name: Checkout code
2121
uses: actions/checkout@v4
2222

23-
- name: Set up Python 3.11
23+
- name: Set up Python 3.13
2424
uses: actions/setup-python@v5
2525
with:
26-
python-version: "3.11"
26+
python-version: "3.13"
2727
cache: "pip"
2828

2929
- name: Install dependencies
@@ -32,5 +32,5 @@ jobs:
3232
- name: Run tests and generate .coverage
3333
run: py.test -s --ignore=chk --cov=./chk
3434

35-
- name: Upload to coveralls.io
36-
run: coveralls
35+
- name: Upload to Coveralls.io
36+
uses: coverallsapp/github-action@v2

.github/workflows/test-ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ jobs:
3333
- name: Checkout code
3434
uses: actions/checkout@v4
3535

36-
- name: Set up Python 3.11
36+
- name: Set up Python 3.13
3737
uses: actions/setup-python@v5
3838
with:
39-
python-version: "3.11"
39+
python-version: "3.13"
4040
cache: "pip"
4141

4242
- name: Install dependencies

.mypy.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[mypy]
2-
python_version = 3.11
2+
python_version = 3.13
33
warn_redundant_casts = true
44
warn_unused_ignores = true
55

.pylintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ unsafe-load-any-extension=no
5757
extension-pkg-allow-list=
5858

5959
# Minimum supported python version
60-
py-version = 3.11
60+
py-version = 3.13
6161

6262
# Control the amount of potential inferred values when inferring a single
6363
# object. This can help the performance when dealing with large functions or

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
![CHKware | Low-code API quality testing, and automation toolbox](https://raw.githubusercontent.com/chkware/cli/main/docs/github-readme-01.png)
66

77
[![PyPI version](https://badge.fury.io/py/chk.svg)](https://badge.fury.io/py/chk)
8-
[![Python 3.11](https://img.shields.io/badge/python-3.11-red.svg)](https://www.python.org/downloads/)
8+
[![Python 3.13](https://img.shields.io/badge/python-3.13-blue.svg)](https://www.python.org/downloads/)
99
[![Twitter](https://img.shields.io/twitter/url/https/twitter.com/chkware.svg?style=social&label=Follow%20%40chkware)](https://twitter.com/chkware)
1010
[![Known Vulnerabilities](https://snyk.io/test/github/chkware/cli/main/badge.svg)](https://snyk.io/test/github/chkware/cli)
1111
[![Bugs](https://sonarcloud.io/api/project_badges/measure?project=chkware_cli&metric=bugs)](https://sonarcloud.io/summary/new_code?id=chkware_cli)

0 commit comments

Comments
 (0)