Skip to content

Commit 9b7d285

Browse files
committed
Make Python 3.9 the minimum version
3.8 is very EOL by now, let's move forward a bit...
1 parent 5596195 commit 9b7d285

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Install Python
1818
uses: actions/setup-python@v2
1919
with:
20-
python-version: 3.8
20+
python-version: 3.9
2121
- name: Install dependencies, linters, doc-tools
2222
run: |
2323
python -m pip install --upgrade pip

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Install Python
1919
uses: actions/setup-python@v2
2020
with:
21-
python-version: 3.8
21+
python-version: 3.9
2222
- name: Install dependencies, linters, doc-tools
2323
run: |
2424
python -m pip install --upgrade pip

Documentation/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Prerequisites
77
-------------
88
tbot supports running on Linux only. Other UNIXes might work but are not tested.
99

10-
tbot requires at least **Python 3.8**. Any version older than that **will not
10+
tbot requires at least **Python 3.9**. Any version older than that **will not
1111
work**.
1212

1313
Installation

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<p align="center">
22
<img src="Documentation/static/tbot-logo-header.png" alt="tbot" /><br />
3-
<a href="https://www.python.org/"><img src="https://img.shields.io/badge/python-3.8-blue.svg" alt="Python 3.8" /></a>
3+
<a href="https://www.python.org/"><img src="https://img.shields.io/badge/python-3.9-blue.svg" alt="Python 3.9" /></a>
44
<a href="http://mypy-lang.org/"><img src="http://www.mypy-lang.org/static/mypy_badge.svg" alt="Checked with mypy" /></a>
55
<a href="https://github.com/ambv/black"><img src="https://img.shields.io/badge/code%20style-black-000000.svg" alt="Code style: black" /></a>
66
<a href="https://github.com/Rahix/tbot/actions"><img src="https://github.com/Rahix/tbot/workflows/tbot%20selftest%20CI/badge.svg" alt="tbot selftest CI" /></a>

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ write_to = "tbot/_version.py"
1313
profile = "black"
1414

1515
[tool.mypy]
16-
python_version = "3.8"
16+
python_version = "3.9"
1717
mypy_path = "stubs/:./"
1818
warn_incomplete_stub = true
1919
warn_redundant_casts = true

0 commit comments

Comments
 (0)