-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #49 from beeware/py3.13-support
Add support for Python 3.13
- Loading branch information
Showing
33 changed files
with
30 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ project_name = "Testbed" | |
bundle = "org.beeware" | ||
version = "0.0.1" | ||
url = "https://beeware.org" | ||
license = "BSD license" | ||
license.file = "LICENSE" | ||
author = 'Russell Keith-Magee' | ||
author_email = "[email protected]" | ||
|
||
|
@@ -14,17 +14,17 @@ long_description = """A test of common use cases and known problems with bundled | |
Validates 3rd party module loading, as well as basic app packaging. | ||
""" | ||
icon = "src/testbed/resources/testbed" | ||
icon = "icons/testbed" | ||
sources = ["src/testbed"] | ||
test_sources = ["tests"] | ||
|
||
requires = [ | ||
# Binary wheels on iOS all need to be updated for the new sysconfig platform tag. | ||
"cryptography; platform_system != 'iOS'", | ||
"lru_dict; platform_system != 'iOS'", | ||
"pillow; platform_system != 'iOS'", | ||
"numpy; platform_system != 'iOS'", | ||
"pandas; platform_system != 'iOS'", | ||
"cryptography", | ||
"lru_dict", | ||
"pillow", | ||
# Numpy/pandas aren't available on 3.13. | ||
"numpy; python_version < '3.13'", | ||
"pandas; python_version < '3.13'", | ||
] | ||
test_requires = [ | ||
"pytest", | ||
|
@@ -37,10 +37,11 @@ requires = [ | |
"rubicon-objc", | ||
"std-nslog", | ||
] | ||
# support_package = "../Python-Apple-support/dist/Python-3.8-macOS-support.custom.tar.gz" | ||
# support_package = "../Python-Apple-support/dist/Python-3.13-macOS-support.custom.tar.gz" | ||
|
||
[tool.briefcase.app.testbed.macOS.app] | ||
# template = "../../templates/briefcase-macOS-app-template" | ||
# stub_binary = "../../templates/briefcase-macOS-Xcode-template/stub/build/gui-stub/macos/xcode/build/Release/GUI Stub.app/Contents/MacOS/GUI Stub" | ||
|
||
[tool.briefcase.app.testbed.macOS.Xcode] | ||
# template = "../../templates/briefcase-macOS-Xcode-template" | ||
|
@@ -93,7 +94,7 @@ requires = [ | |
"rubicon-objc", | ||
"std-nslog", | ||
] | ||
# support_package = "../Python-Apple-support/dist/Python-3.8-iOS-support.custom.tar.gz" | ||
# support_package = "../Python-Apple-support/dist/Python-3.13-iOS-support.custom.tar.gz" | ||
# template = "../../templates/briefcase-iOS-Xcode-template" | ||
|
||
[tool.briefcase.app.testbed.android] | ||
|
@@ -102,7 +103,7 @@ requires = [ | |
"tzdata", | ||
] | ||
|
||
# support_package = "../Python-Android-support/dist/Python-3.10-Android-support.custom.zip" | ||
# support_package = "../Python-Android-support/dist/Python-3.13-Android-support.custom.zip" | ||
# template = "../../templates/briefcase-Android-gradle-template" | ||
|
||
[tool.isort] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.