Skip to content

Commit 48a125b

Browse files
committed
cleanup: update workflow, drop eol Python 3.8 support
Signed-off-by: K.B.Dharun Krishna <[email protected]>
1 parent 293635a commit 48a125b

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Diff for: .github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Set up Python
2727
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
2828
with:
29-
python-version: '3.8'
29+
python-version: '3.9'
3030

3131
- name: Install sphinx toolset
3232
run: >-

Diff for: .github/workflows/test.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
os: ['ubuntu-latest', 'ubuntu-24.04-arm']
12-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3.10', 'pypy3.11']
12+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', 'pypy3.10', 'pypy3.11']
1313

1414
steps:
1515
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
@@ -46,14 +46,14 @@ jobs:
4646
run: |
4747
python3 -m pip install .
4848
tldr --version
49-
tldr tldr
49+
tldr tldr --markdown
5050
5151
build-macos:
5252
runs-on: macos-latest
5353

5454
strategy:
5555
matrix:
56-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3.10', 'pypy3.11']
56+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', 'pypy3.10', 'pypy3.11']
5757

5858
steps:
5959
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
@@ -91,14 +91,14 @@ jobs:
9191
run: |
9292
python3 -m pip install .
9393
tldr --version
94-
tldr tldr
94+
tldr tldr --markdown
9595
9696
build-windows:
9797
runs-on: windows-latest
9898

9999
strategy:
100100
matrix:
101-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3.10', 'pypy3.11']
101+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
102102

103103
steps:
104104
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
@@ -135,7 +135,7 @@ jobs:
135135
run: |
136136
python3 -m pip install .
137137
tldr --version
138-
tldr tldr
138+
tldr tldr --markdown
139139
140140
build-snap:
141141
runs-on: ${{ matrix.os }}

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
'pytest-runner',
3636
],
3737
version=version,
38-
python_requires='~=3.8',
38+
python_requires='~=3.9',
3939
classifiers=[
4040
"Development Status :: 5 - Production/Stable",
4141
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)