Skip to content

Commit 0d2ec83

Browse files
committed
Merge branch 'master' into py-typed
2 parents 0b8b3f1 + b05073b commit 0d2ec83

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/run-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ jobs:
5454
- ubuntu-latest
5555
- windows-latest
5656
python-version:
57-
- '3.6'
5857
- '3.7'
5958
- '3.8'
6059
- '3.9'
6160
- '3.10'
61+
- '3.11'
6262
steps:
6363
- name: Checkout
6464
uses: actions/checkout@v3

.pre-commit-config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
repos:
33

44
- repo: https://github.com/pre-commit/pre-commit-hooks
5-
rev: v4.3.0
5+
rev: v4.4.0
66
hooks:
77
- name: remove trailing whitespace
88
id: trailing-whitespace
@@ -12,26 +12,26 @@ repos:
1212
id: requirements-txt-fixer
1313

1414
- repo: https://github.com/pycqa/isort
15-
rev: 5.10.1
15+
rev: 5.12.0
1616
hooks:
1717
- name: sort python imports
1818
id: isort
1919

2020
- repo: https://github.com/psf/black
21-
rev: 22.6.0
21+
rev: 23.1.0
2222
hooks:
2323
- name: format python files
2424
id: black
2525
language_version: python3
2626

2727
- repo: https://github.com/pycqa/flake8
28-
rev: 5.0.4
28+
rev: 6.0.0
2929
hooks:
3030
- name: check python syntax
3131
id: flake8
3232

3333
- repo: https://github.com/asottile/setup-cfg-fmt
34-
rev: v2.0.0
34+
rev: v2.2.0
3535
hooks:
3636
- name: format setup.cfg
3737
id: setup-cfg-fmt
@@ -49,7 +49,7 @@ repos:
4949
- mdformat-gfm
5050

5151
- repo: https://github.com/adrienverge/yamllint
52-
rev: v1.27.1
52+
rev: v1.29.0
5353
hooks:
5454
- name: check YAML syntax + format
5555
id: yamllint

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[![Latest PyPi version](https://img.shields.io/pypi/v/readchar.svg)](https://pypi.python.org/pypi/readchar)
33
[![supported Python versions](https://img.shields.io/pypi/pyversions/readchar)](https://pypi.python.org/pypi/readchar)
44
[![Project licence](https://img.shields.io/pypi/l/readchar?color=blue)](LICENCE) <br>
5-
[![Automated testing results](https://img.shields.io/github/workflow/status/magmax/python-readchar/Tests/master?label=Tests)](https://github.com/magmax/python-readchar/actions/workflows/run-tests.yaml?query=branch%3Amaster)
5+
[![Automated testing results](https://img.shields.io/github/actions/workflow/status/magmax/python-readchar/run-tests.yaml?branch=master)](https://github.com/magmax/python-readchar/actions/workflows/run-tests.yaml?query=branch%3Amaster)
66
[![Coveralls results](https://coveralls.io/repos/github/magmax/python-readchar/badge.svg?branch=master)](https://coveralls.io/github/magmax/python-readchar?branch=master)
77
[![Number of PyPi downloads](https://img.shields.io/pypi/dd/readchar.svg)](https://pypi.python.org/pypi/readchar)
88

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ classifiers =
1818
Operating System :: POSIX :: Linux
1919
Programming Language :: Python :: 3
2020
Programming Language :: Python :: 3 :: Only
21-
Programming Language :: Python :: 3.6
2221
Programming Language :: Python :: 3.7
2322
Programming Language :: Python :: 3.8
2423
Programming Language :: Python :: 3.9
2524
Programming Language :: Python :: 3.10
25+
Programming Language :: Python :: 3.11
2626
Programming Language :: Python :: Implementation :: CPython
2727
Topic :: Software Development
2828
Topic :: Software Development :: User Interfaces

0 commit comments

Comments
 (0)