Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python support: drop 3.10, add 3.13 #652

Merged
merged 1 commit into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,16 +48,16 @@ body:
description: "Note: Bug fixes are only supported on these Python versions."
multiple: true
options:
- Python 3.10
- Python 3.11
- Python 3.12
- Python 3.13
validations:
required: true
- type: textarea
id: env
attributes:
label: Execution Environment
description: "List the OS, python micro version (e.g. 3.10.8), system environment variables, etc."
description: "List the OS, python micro version (e.g. 3.11), system environment variables, etc."
validations:
required: false
- type: textarea
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/VariableProducer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
value: ${{ jobs.produce.outputs.node-versions }}

env:
pythonversions: "['3.12', '3.11', '3.10']" # Keep Python Versions in descending order
pythonversions: "['3.13', '3.12', '3.11']" # Keep Python Versions in descending order
nodeversions: "['19']"

jobs:
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Javagedes marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dynamic = ["version"]
description = "Python library supporting UEFI EDK2 firmware development"
readme = {file = "readme.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
requires-python = ">=3.10"
requires-python = ">=3.11"
dependencies = [
"pyasn1 >= 0.4.8",
"pyasn1-modules >= 0.2.8",
Expand All @@ -18,17 +18,17 @@ dependencies = [
"GitPython >= 3.1.30",
"sqlalchemy >= 2.0.0",
"pygount >= 1.6.1",
"pywin32==306 ; sys_platform == 'win32'",
"pywin32==308 ; sys_platform == 'win32'",
]
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]

[project.urls]
Expand Down
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ Supported Versions

| Host Type | Toolchain | Status
| :--------------- | :---------- | :--------------------
| [Windows-Latest] | Python 3.10 | [![ci]][_ci]
| [Windows-Latest] | Python 3.11 | [![ci]][_ci]
| [Windows-Latest] | Python 3.12 | [![ci]][_ci]
| [Ubuntu-Latest] | Python 3.10 | [![ci]][_ci]
| [Windows-Latest] | Python 3.13 | [![ci]][_ci]
| [Ubuntu-Latest] | Python 3.11 | [![ci]][_ci]
| [Ubuntu-Latest] | Python 3.12 | [![ci]][_ci]
| [MacOS-Latest] | Python 3.10 | [![coming_soon]][_ci]
| [Ubuntu-Latest] | Python 3.13 | [![ci]][_ci]
| [MacOS-Latest] | Python 3.11 | [![coming_soon]][_ci]
| [MacOS-Latest] | Python 3.12 | [![coming_soon]][_ci]
| [MacOS-Latest] | Python 3.13 | [![coming_soon]][_ci]

### Current Release

Expand Down