Skip to content

Commit

Permalink
feat: update to python versions with active support
Browse files Browse the repository at this point in the history
  • Loading branch information
harrtho committed Jan 21, 2025
1 parent 9c56057 commit 8b2969d
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.9

- name: Install test dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ A helper library in Python for authors of workflows for [Alfred 4 and 5][alfred]
[![Supported Python Versions][shield-pyversions]][pypi]

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

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

Expand Down
2 changes: 1 addition & 1 deletion README_PYPI.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

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

Supports macOS Catalina and Python 3.8+.
Supports macOS Catalina and Python 3.9+.

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

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,12 @@ def run_tests(self):
'Operating System :: MacOS :: MacOS X',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Application Frameworks',
]
Expand Down
2 changes: 1 addition & 1 deletion tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ in the project root to run the full test suite in place with coverage.
```bash
tox
```
in the project root to build, install and test with Python 3.8.
in the project root to build, install and test with Python 3.9.


Testing a single module with coverage
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ addopts =
--doctest-modules

[tox]
envlist=py38,py39,py310,py311,py312
envlist=py39,py310,py311,py312,py313,py314

[testenv]
usedevelop = true
Expand Down

0 comments on commit 8b2969d

Please sign in to comment.