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

Add initial support for Python3.14 #103

Merged
merged 3 commits into from
Dec 18, 2024
Merged
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
17 changes: 8 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ requires = [
"cryptography",
"lru_dict",
"pillow",
# Numpy/pandas aren't available for iOS on 3.13+.
"numpy; python_version < '3.13' or platform_system != 'iOS'",
"pandas; python_version < '3.13' or platform_system != 'iOS'",
# Numpy/pandas aren't available for iOS on 3.13+, or at all on 3.14.
"numpy; python_version < '3.13' or (platform_system != 'iOS' and python_version < '3.14')",
"pandas; python_version < '3.13' or (platform_system != 'iOS' and python_version < '3.14')",
]
test_requires = [
"pytest",
Expand All @@ -37,7 +37,7 @@ requires = [
"rubicon-objc",
"std-nslog",
]
# support_package = "../Python-Apple-support/dist/Python-3.13-macOS-support.custom.tar.gz"
# support_package = "../Python-Apple-support/dist/Python-3.14-macOS-support.custom.tar.gz"

[tool.briefcase.app.testbed.macOS.app]
# template = "../../templates/briefcase-macOS-app-template"
Expand Down Expand Up @@ -77,8 +77,8 @@ flatpak_sdk = "org.gnome.Sdk"

[tool.briefcase.app.testbed.windows]
requires = [
# Python.net isn't avaialble for 3.13 yet.
"pythonnet>=3.0.0rc6; python_version < '3.13'",
# Python.net isn't avaialble for 3.14 yet.
"pythonnet>=3.0.0; python_version < '3.14'",
# Windows doesn't provide the zoneinfo TZ database; use the Python provided one
"tzdata",
]
Expand All @@ -95,7 +95,7 @@ requires = [
"rubicon-objc",
"std-nslog",
]
# support_package = "../Python-Apple-support/dist/Python-3.13-iOS-support.custom.tar.gz"
# support_package = "../Python-Apple-support/dist/Python-3.14-iOS-support.custom.tar.gz"
# template = "../../templates/briefcase-iOS-Xcode-template"

[tool.briefcase.app.testbed.android]
Expand All @@ -110,8 +110,7 @@ build_gradle_dependencies = [
"com.google.android.material:material:1.11.0",
]

# support_package = "../Python-Android-support/dist/Python-3.13-Android-support.custom.zip"
# template = "../../templates/briefcase-Android-gradle-template"
# template = "../../templates/briefcase-android-gradle-template"

[tool.isort]
profile = "black"
Expand Down
Loading