Skip to content

Commit 26c411a

Browse files
authored
Bring Python current in GHA (#300)
1 parent 8ac0edf commit 26c411a

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
python-version: ["3.11"]
13+
python-version: ["3.13"]
1414
os: ["ubuntu-latest"]
1515
runs-on: ${{ matrix.os }}
1616
steps:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
13+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1414
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
1515
runs-on: ${{ matrix.os }}
1616
steps:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ uv tool install ghstack
88

99
ghstack is tested with
1010
[several different Python versions](https://github.com/ezyang/ghstack/blob/master/.github/workflows/test.yml#L13).
11-
It requires at least Python 3.8.1.
11+
It requires at least Python 3.9.1.
1212

1313
## How to setup
1414

mypy.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[mypy]
2-
python_version = 3.8
2+
python_version = 3.9
33
strict_optional = True
44
show_column_numbers = True
55
show_error_codes = True

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ authors = [
33
{name = "Edward Z. Yang", email = "[email protected]"},
44
]
55
license = {text = "MIT"}
6-
requires-python = "<4.0.0,>=3.8.1"
6+
requires-python = "<4.0.0,>=3.9.1"
77
dependencies = [
88
"aiohttp<4,>=3",
99
"importlib-metadata>=1.4; python_version < \"3.8\"",

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)