Skip to content

Commit 540d14c

Browse files
authored
Merge pull request #241 from sandialabs/drop-support-for-python-3.9
patch: Drop support for Python 3.9
2 parents dfe703d + 2a8d891 commit 540d14c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
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
runs-on: ubuntu-latest
2020
strategy:
2121
matrix:
22-
version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
22+
version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2323
fail-fast: false
2424
steps:
2525

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
[![pre-commit.ci Status](https://results.pre-commit.ci/badge/github/sandialabs/staged-script/master.svg)](https://results.pre-commit.ci/latest/github/sandialabs/staged-script/master)
1818
[![PyPI - Version](https://img.shields.io/pypi/v/staged-script?label=PyPI)](https://pypi.org/project/staged-script/)
1919
![PyPI - Downloads](https://img.shields.io/pypi/dm/staged-script?label=PyPI%20downloads)
20-
![Python Version](https://img.shields.io/badge/Python-3.9|3.10|3.11|3.12|3.13-blue.svg)
20+
![Python Version](https://img.shields.io/badge/Python-3.10|3.11|3.12|3.13|3.14-blue.svg)
2121
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
2222

2323
# staged-script

doc/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
.. |PyPI Version| image:: https://img.shields.io/pypi/v/staged-script?label=PyPI
5555
:target: https://pypi.org/project/staged-script/
5656
.. |PyPI Downloads| image:: https://img.shields.io/pypi/dm/staged-script?label=PyPI%20downloads
57-
.. |Python Version| image:: https://img.shields.io/badge/Python-3.9|3.10|3.11|3.12|3.13-blue.svg
57+
.. |Python Version| image:: https://img.shields.io/badge/Python-3.10|3.11|3.12|3.13|3.14-blue.svg
5858
.. |Ruff| image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json
5959
:target: https://github.com/astral-sh/ruff
6060

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ classifiers = [
3939
"Operating System :: OS Independent",
4040
"Programming Language :: Python :: 3",
4141
"Programming Language :: Python :: 3 :: Only",
42-
"Programming Language :: Python :: 3.9",
4342
"Programming Language :: Python :: 3.10",
4443
"Programming Language :: Python :: 3.11",
4544
"Programming Language :: Python :: 3.12",
4645
"Programming Language :: Python :: 3.13",
46+
"Programming Language :: Python :: 3.14",
4747
"Topic :: Software Development",
4848
"Topic :: Software Development :: Debuggers",
4949
"Topic :: Software Development :: Documentation",
@@ -60,7 +60,7 @@ Issues = "https://github.com/sandialabs/staged-script/issues"
6060

6161

6262
[tool.poetry.dependencies]
63-
python = ">=3.8"
63+
python = ">=3.10"
6464
reverse-argparse = "*"
6565
rich = "*"
6666
tenacity = "*"

0 commit comments

Comments
 (0)