Skip to content

Commit 35f4552

Browse files
committed
Bump lowest supported python
1 parent 85196a0 commit 35f4552

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/tests.yml

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

1414
strategy:
1515
matrix:
16-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
16+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1717

1818
steps:
1919
- uses: actions/checkout@v4

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
author="Zoran Simic zoran@simicweb.com",
88
keywords="python, portable, binary",
99
url="https://github.com/codrsquad/portable-python",
10-
python_requires=">=3.9",
10+
python_requires=">=3.10",
1111
entry_points={
1212
"console_scripts": [
1313
"portable-python = portable_python.__main__:main",
@@ -22,11 +22,11 @@
2222
"Operating System :: Unix",
2323
"Programming Language :: Python",
2424
"Programming Language :: Python :: 3",
25-
"Programming Language :: Python :: 3.9",
2625
"Programming Language :: Python :: 3.10",
2726
"Programming Language :: Python :: 3.11",
2827
"Programming Language :: Python :: 3.12",
2928
"Programming Language :: Python :: 3.13",
29+
"Programming Language :: Python :: 3.14",
3030
"Programming Language :: Python :: Implementation :: CPython",
3131
"Topic :: Software Development :: Build Tools",
3232
"Topic :: System :: Installation/Setup",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{310,311,312,313}, coverage, docs, style
2+
envlist = py{310,311,312,313,314}, coverage, docs, style
33
skip_missing_interpreters = true
44

55
[testenv]

0 commit comments

Comments
 (0)