File tree Expand file tree Collapse file tree 2 files changed +17
-9
lines changed
Filter options
Expand file tree Collapse file tree 2 files changed +17
-9
lines changed
Original file line number Diff line number Diff line change @@ -51,20 +51,31 @@ jobs:
51
51
include :
52
52
# Windows: test old and new Python
53
53
- os : windows-latest
54
- python : 3.6
54
+ python : " 3.6"
55
55
- os : windows-latest
56
- python : 3.13
56
+ python : " 3.13"
57
57
58
- # macOS: test only new Python
58
+ # macOS
59
+ # Python 3.8 is the oldest version available on macOS/arm64.
59
60
- os : macos-latest
60
- python : 3.12
61
+ python : " 3.8"
62
+ - os : macos-latest
63
+ python : " 3.9"
64
+ - os : macos-latest
65
+ python : " 3.10"
66
+ - os : macos-latest
67
+ python : " 3.11"
68
+ - os : macos-latest
69
+ python : " 3.12"
70
+ - os : macos-latest
71
+ python : " 3.13"
61
72
62
73
# Ubuntu: test deadsnakes Python versions which are not supported by
63
74
# GHA python-versions.
64
75
- os : ubuntu-20.04
65
- python : 3.6
76
+ python : " 3.6"
66
77
- os : ubuntu-22.04
67
- python : 3.7
78
+ python : " 3.7"
68
79
69
80
steps :
70
81
# https://github.com/actions/checkout
Original file line number Diff line number Diff line change @@ -2082,9 +2082,6 @@ PyConfig_Get(const char *name)
2082
2082
PYTHONCAPI_COMPAT_SPEC (use_frozen_modules, BOOL, _Py_NULL),
2083
2083
#endif
2084
2084
PYTHONCAPI_COMPAT_SPEC (use_hash_seed, BOOL, _Py_NULL),
2085
- #if 0x030D0000 <= PY_VERSION_HEX && defined(__APPLE__)
2086
- PYTHONCAPI_COMPAT_SPEC (use_system_logger, BOOL, _Py_NULL),
2087
- #endif
2088
2085
PYTHONCAPI_COMPAT_SPEC (user_site_directory, BOOL, _Py_NULL),
2089
2086
#if 0x030A0000 <= PY_VERSION_HEX
2090
2087
PYTHONCAPI_COMPAT_SPEC (warn_default_encoding, BOOL, _Py_NULL),
You can’t perform that action at this time.
0 commit comments