Skip to content

Commit fde8b9a

Browse files
authored
Merge pull request #302 from splunk/python313
Python 3.13 support use_enum_values is also slated for removal in the target branch
2 parents 7646c24 + 5191ff8 commit fde8b9a

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

.github/workflows/testEndToEnd.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
name: testEndToEnd
22
on:
3-
push:
43
pull_request:
5-
types: [opened, reopened]
4+
types: [opened, reopened, synchronize]
65
schedule:
76
- cron: "44 4 * * *"
87

@@ -11,8 +10,8 @@ jobs:
1110
strategy:
1211
fail-fast: false
1312
matrix:
14-
python_version: ["3.11", "3.12"]
15-
operating_system: ["ubuntu-20.04", "ubuntu-22.04", "macos-latest", "macos-14", "windows-2022"]
13+
python_version: ["3.11", "3.12", "3.13"]
14+
operating_system: ["ubuntu-20.04", "ubuntu-24.04", "macos-15", "macos-14", "windows-2022"]
1615
#operating_system: ["ubuntu-20.04", "ubuntu-22.04", "macos-latest"]
1716

1817

.github/workflows/test_against_escu.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@
66
# note yet been fixed in security_content, we may see this workflow fail.
77
name: test_against_escu
88
on:
9-
push:
109
pull_request:
11-
types: [opened, reopened]
10+
types: [opened, reopened, synchronize]
1211
schedule:
1312
- cron: "44 4 * * *"
1413

@@ -17,9 +16,9 @@ jobs:
1716
strategy:
1817
fail-fast: false
1918
matrix:
20-
python_version: ["3.11", "3.12"]
19+
python_version: ["3.11", "3.12", "3.13"]
2120

22-
operating_system: ["ubuntu-20.04", "ubuntu-22.04", "macos-latest", "macos-14"]
21+
operating_system: ["ubuntu-20.04", "ubuntu-24.04", "macos-15", "macos-14"]
2322
# Do not test against ESCU until known character encoding issue is resolved
2423
# operating_system: ["ubuntu-20.04", "ubuntu-22.04", "macos-latest", "macos-14", "windows-2022"]
2524

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ readme = "README.md"
1111
contentctl = 'contentctl.contentctl:main'
1212

1313
[tool.poetry.dependencies]
14-
python = "^3.11,<3.13"
14+
15+
python = "^3.11,<3.14"
1516
pydantic = "~2.9.2"
1617
PyYAML = "^6.0.2"
1718
requests = "~2.32.3"
@@ -26,7 +27,7 @@ semantic-version = "^2.10.0"
2627
bottle = ">=0.12.25,<0.14.0"
2728
tqdm = "^4.66.5"
2829
pygit2 = "^1.15.1"
29-
tyro = "^0.8.3"
30+
tyro = "^0.9.2"
3031
gitpython = "^3.1.43"
3132
setuptools = ">=69.5.1,<76.0.0"
3233
[tool.poetry.dev-dependencies]

0 commit comments

Comments
 (0)