Skip to content

Commit dce0988

Browse files
committed
DOC Support py3.14 (and not 3.7)
Python 3.7 is not available in newer uv (while 3.14 is)
1 parent 8d87186 commit dce0988

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/python-package.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
python-version:
12-
- '3.7'
1312
- '3.8'
1413
- '3.9'
1514
- '3.10'

README.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ different machines.
2727

2828
Jug is a pure Python implementation and should work on any platform.
2929

30-
Python versions 3.7 and above are supported.
30+
Python versions 3.8 and above are supported (will almost certainly work on
31+
earlier versions as well, but they are not part of the [CI
32+
suite](https://github.com/luispedro/jug/actions).
3133

3234
*Documentation*: `https://jug.readthedocs.io/ <https://jug.readthedocs.io/>`__
3335

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,21 @@ license = {text = "MIT"}
1111
authors = [
1212
{name = "Luis Pedro Coelho", email = "luis@luispedro.org"}
1313
]
14-
requires-python = ">=3.7"
14+
requires-python = ">=3.8"
1515
classifiers = [
1616
"Development Status :: 5 - Production/Stable",
1717
"Environment :: Console",
1818
"Operating System :: POSIX",
1919
"Operating System :: OS Independent",
2020
"Programming Language :: Python",
2121
"Programming Language :: Python :: 3",
22-
"Programming Language :: Python :: 3.7",
2322
"Programming Language :: Python :: 3.8",
2423
"Programming Language :: Python :: 3.9",
2524
"Programming Language :: Python :: 3.10",
2625
"Programming Language :: Python :: 3.11",
2726
"Programming Language :: Python :: 3.12",
2827
"Programming Language :: Python :: 3.13",
28+
"Programming Language :: Python :: 3.14",
2929
"Topic :: Scientific/Engineering",
3030
"Topic :: Software Development",
3131
"Topic :: System :: Distributed Computing",

0 commit comments

Comments
 (0)