Skip to content

Commit 6667793

Browse files
committed
‼️ BREAKING: drop Python 3.9 (#45)
1 parent 7717380 commit 6667793

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
runs-on: ${{ matrix.os }}
2525
strategy:
2626
matrix:
27-
python-version: ['3.9', '3.13', '3.14-dev']
27+
python-version: ['3.10', '3.13', '3.14', '3.15-dev']
2828
os: [ubuntu-latest, macos-latest, windows-latest]
29-
continue-on-error: ${{ matrix.python-version == '3.14-dev' }}
29+
continue-on-error: ${{ matrix.python-version == '3.15-dev' }}
3030

3131
steps:
3232
- uses: actions/checkout@v4
@@ -49,7 +49,7 @@ jobs:
4949
5050
# FYI: Requires token to continue usage
5151
# - name: Upload to Codecov
52-
# if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.9
52+
# if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.10
5353
# uses: codecov/codecov-action@v1
5454
# with:
5555
# name: pytests
@@ -65,7 +65,7 @@ jobs:
6565
- name: Set up Python
6666
uses: actions/setup-python@v2
6767
with:
68-
python-version: 3.9
68+
python-version: 3.10
6969

7070
- name: Installation (deps and package)
7171
run: |
@@ -87,7 +87,7 @@ jobs:
8787
- name: Set up Python
8888
uses: actions/setup-python@v5
8989
with:
90-
python-version: 3.9
90+
python-version: 3.10
9191
- name: install flit
9292
run: |
9393
pip install flit~=3.0

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ classifiers = [
1818
]
1919
keywords = "mdformat,markdown,formatter,gfm"
2020

21-
requires-python=">=3.9"
21+
requires-python=">=3.10"
2222
requires=[
2323
"mdformat >=0.7.0",
2424
"mdit-py-plugins >=0.3.0",

0 commit comments

Comments
 (0)