@@ -22,9 +22,9 @@ requires = [
22
22
" cryptography" ,
23
23
" lru_dict" ,
24
24
" pillow" ,
25
- # Numpy/pandas aren't available for iOS on 3.13+.
26
- " numpy; python_version < '3.13' or platform_system != 'iOS'" ,
27
- " pandas; python_version < '3.13' or platform_system != 'iOS'" ,
25
+ # Numpy/pandas aren't available for iOS on 3.13+, or at all on 3.14 .
26
+ " numpy; python_version < '3.13' or ( platform_system != 'iOS' and python_version < '3.14') " ,
27
+ " pandas; python_version < '3.13' or ( platform_system != 'iOS' and python_version < '3.14') " ,
28
28
]
29
29
test_requires = [
30
30
" pytest" ,
@@ -37,7 +37,7 @@ requires = [
37
37
" rubicon-objc" ,
38
38
" std-nslog" ,
39
39
]
40
- # support_package = "../Python-Apple-support/dist/Python-3.13 -macOS-support.custom.tar.gz"
40
+ # support_package = "../Python-Apple-support/dist/Python-3.14 -macOS-support.custom.tar.gz"
41
41
42
42
[tool .briefcase .app .testbed .macOS .app ]
43
43
# template = "../../templates/briefcase-macOS-app-template"
@@ -77,8 +77,8 @@ flatpak_sdk = "org.gnome.Sdk"
77
77
78
78
[tool .briefcase .app .testbed .windows ]
79
79
requires = [
80
- # Python.net isn't avaialble for 3.13 yet.
81
- " pythonnet>=3.0.0rc6 ; python_version < '3.13 '" ,
80
+ # Python.net isn't avaialble for 3.14 yet.
81
+ " pythonnet>=3.0.0 ; python_version < '3.14 '" ,
82
82
# Windows doesn't provide the zoneinfo TZ database; use the Python provided one
83
83
" tzdata" ,
84
84
]
@@ -95,7 +95,7 @@ requires = [
95
95
" rubicon-objc" ,
96
96
" std-nslog" ,
97
97
]
98
- # support_package = "../Python-Apple-support/dist/Python-3.13 -iOS-support.custom.tar.gz"
98
+ # support_package = "../Python-Apple-support/dist/Python-3.14 -iOS-support.custom.tar.gz"
99
99
# template = "../../templates/briefcase-iOS-Xcode-template"
100
100
101
101
[tool .briefcase .app .testbed .android ]
@@ -110,8 +110,7 @@ build_gradle_dependencies = [
110
110
" com.google.android.material:material:1.11.0" ,
111
111
]
112
112
113
- # support_package = "../Python-Android-support/dist/Python-3.13-Android-support.custom.zip"
114
- # template = "../../templates/briefcase-Android-gradle-template"
113
+ # template = "../../templates/briefcase-android-gradle-template"
115
114
116
115
[tool .isort ]
117
116
profile = " black"
0 commit comments