Skip to content

Commit 8b2969d

Browse files
committed
feat: update to python versions with active support
1 parent 9c56057 commit 8b2969d

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Python ${{ matrix.python-version }}
2020
uses: actions/setup-python@v5
2121
with:
22-
python-version: 3.8
22+
python-version: 3.9
2323

2424
- name: Install test dependencies
2525
run: |

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ A helper library in Python for authors of workflows for [Alfred 4 and 5][alfred]
1616
[![Supported Python Versions][shield-pyversions]][pypi]
1717

1818
<!-- [![Downloads][shield-download]][pypi] -->
19-
Supports Alfred 4 and Alfred 5 on macOS Catalina or later with Python 3.8+.
19+
Supports Alfred 4 and Alfred 5 on macOS Catalina or later with Python 3.9+.
2020

2121
Alfred-PyWorkflow is a Python 3 port of the original [Alfred-Workflow][alfred-workflow].
2222

README_PYPI.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
A helper library for writing `Alfred 4 and 5`_ workflows.
33

4-
Supports macOS Catalina and Python 3.8+.
4+
Supports macOS Catalina and Python 3.9+.
55

66
Alfred-Workflow is designed to take the grunt work out of writing a workflow.
77

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,12 @@ def run_tests(self):
5555
'Operating System :: MacOS :: MacOS X',
5656
'Intended Audience :: Developers',
5757
'Natural Language :: English',
58-
'Programming Language :: Python :: 3.8',
5958
'Programming Language :: Python :: 3.9',
6059
'Programming Language :: Python :: 3.10',
6160
'Programming Language :: Python :: 3.11',
6261
'Programming Language :: Python :: 3.12',
62+
'Programming Language :: Python :: 3.13',
63+
'Programming Language :: Python :: 3.14',
6364
'Topic :: Software Development :: Libraries',
6465
'Topic :: Software Development :: Libraries :: Application Frameworks',
6566
]

tests/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ in the project root to run the full test suite in place with coverage.
1616
```bash
1717
tox
1818
```
19-
in the project root to build, install and test with Python 3.8.
19+
in the project root to build, install and test with Python 3.9.
2020

2121

2222
Testing a single module with coverage

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ addopts =
1313
--doctest-modules
1414

1515
[tox]
16-
envlist=py38,py39,py310,py311,py312
16+
envlist=py39,py310,py311,py312,py313,py314
1717

1818
[testenv]
1919
usedevelop = true

0 commit comments

Comments
 (0)