Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,18 @@ jobs:
fail-fast: false
matrix:
python-version:
- '3.9'
- '3.10'
- '3.11'
- '3.12'
- '3.13'
- 'pypy-3.9'
- '3.14'
- 'pypy-3.10'
- 'pypy-3.11'
toxenv: [py]
include:
- python-version: '3.9'
- python-version: '3.10'
toxenv: lint
- python-version: '3.9'
- python-version: '3.10'
toxenv: typing
steps:
- name: Check out repository
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
v0.8.0 (in development)
-----------------------
- Support Python 3.13
- Support Python 3.13 and 3.14
- Drop support for Python 3.9

v0.7.2 (2024-07-11)
-------------------
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Features:
Installation & Setup
====================

``jwodder-ps1`` requires Python 3.9 or higher. You'll also need a Bash or zsh
``jwodder-ps1`` requires Python 3.10 or higher. You'll also need a Bash or zsh
shell to set the program up in, and you'll need ``git`` v1.7.10+ installed in
order to get status information about Git repositories.

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "jwodder-ps1"
dynamic = ["version"]
description = "Yet another bash/zsh custom prompt script"
readme = "README.rst"
requires-python = ">=3.9"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
authors = [
Expand All @@ -25,11 +25,11 @@ keywords = [
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Environment :: Console",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = lint,typing,py39,py310,py311,py312,py313,pypy3
envlist = lint,typing,py310,py311,py312,py313,py314,pypy3
skip_missing_interpreters = True
isolated_build = True
minversion = 3.3.0
Expand Down