[issue41100] Support macOS 11 and Apple Silicon Macs

2021-05-31 Thread Isuru Fernando
Change by Isuru Fernando : -- nosy: +isuruf nosy_count: 23.0 -> 24.0 pull_requests: +25069 pull_request: https://github.com/python/cpython/pull/26474 ___ Python tracker ___ ___

[issue41100] Support macOS 11 and Apple Silicon Macs

2021-05-02 Thread Ned Deily
Ned Deily added the comment: Thank you to everyone who contributed to this major undertaking! A particular thank you to Lawrence for doing much of the initial work and paving the way. Now that 3.8 also supports Big Sur and Apple Silicon Macs as of the imminent 3.8.10 release, it's time to c

[issue41100] Support macOS 11 and Apple Silicon Macs

2021-05-02 Thread Ned Deily
Ned Deily added the comment: New changeset bb3ec9ceae7032457f6e7fb72b39aee95976051c by Miss Islington (bot) in branch '3.9': bpo-41100: Update Misc/ACKS (GH-25808) (GH-25809) https://github.com/python/cpython/commit/bb3ec9ceae7032457f6e7fb72b39aee95976051c -- __

[issue41100] Support macOS 11 and Apple Silicon Macs

2021-05-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +24496 pull_request: https://github.com/python/cpython/pull/25809 ___ Python tracker ___ __

[issue41100] Support macOS 11 and Apple Silicon Macs

2021-05-02 Thread Ned Deily
Ned Deily added the comment: New changeset 518f8b5dd50b73499282a1ef02b197af106ad118 by Ned Deily in branch 'master': bpo-41100: Update Misc/ACKS (GH-25808) https://github.com/python/cpython/commit/518f8b5dd50b73499282a1ef02b197af106ad118 -- ___ P

[issue41100] Support macOS 11 and Apple Silicon Macs

2021-05-02 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset b29d0a5a7811418c0a1082ca188fd4850185e290 by Ned Deily in branch '3.8': [3.8] bpo-41100: Support macOS 11 Big Sur and Apple Silicon Macs (#25806) https://github.com/python/cpython/commit/b29d0a5a7811418c0a1082ca188fd4850185e290 -- ___

[issue41100] Support macOS 11 and Apple Silicon Macs

2021-05-02 Thread Ned Deily
Change by Ned Deily : -- pull_requests: +24495 stage: commit review -> patch review pull_request: https://github.com/python/cpython/pull/25808 ___ Python tracker ___ __

[issue41100] Support macOS 11 and Apple Silicon Macs

2021-05-02 Thread Ned Deily
Ned Deily added the comment: Thanks, Max, for doing the backport to 3.8 hard work! While PR 25274 covered most of the changes needed, there were some additional fixes and changes needed and I felt it was easier to cherry-pick all of the changes into a new PR. I have done extensive building

[issue41100] Support macOS 11 and Apple Silicon Macs

2021-05-02 Thread Ned Deily
Change by Ned Deily : -- pull_requests: +24491 pull_request: https://github.com/python/cpython/pull/25806 ___ Python tracker ___ ___

[issue41100] Support macOS 11 and Apple Silicon Macs

2021-04-15 Thread Ned Deily
Ned Deily added the comment: No problem. Also you should not need to specify sysroot if you are; the Apple compiler front-end takes care of that for you (see man xcrun for more details). -- ___ Python tracker _

[issue41100] Support macOS 11 and Apple Silicon Macs

2021-04-15 Thread Harlan Cheer
Harlan Cheer added the comment: @ned.deily sorry about that, will do that in the future. Thanks for replying. in regard to the extra args, those were all added in an attempt to make things work, I should probably have shown an earlier log that excluded them. I wasn't sure setup.py would be t

[issue41100] Support macOS 11 and Apple Silicon Macs

2021-04-15 Thread Ned Deily
Ned Deily added the comment: @harlantc, in general, please open new issues for new problems. That said, I took a quick look at the build.log you provided and it was not obvious exactly why things went wrong. The most obvious difference is that when I do a 3.9.4 build, the extension module so

[issue41100] Support macOS 11 and Apple Silicon Macs

2021-04-15 Thread Harlan Cheer
Harlan Cheer added the comment: Trying to build from source to Apple M1 Big Sur (macOS 11), and it's failing to compile the standard library extension modules. It seems to be that the .c files are not being located properly, but looking in Modules/ I can see all the required source files are

[issue41100] Support macOS 11 and Apple Silicon Macs

2021-04-08 Thread STINNER Victor
STINNER Victor added the comment: > Is there any hope of a backport to 3.7? Or has that ship sailed? Python 3.7 doesn't accept bugfixes anymore, nor new features, nor new platofrm support (macOS 11). The 3.7 branch now only accept security fixes: https://devguide.python.org/#status-of-python

[issue41100] Support macOS 11 and Apple Silicon Macs

2021-04-08 Thread Benoit Hudson
Benoit Hudson added the comment: Is there any hope of a backport to 3.7? Or has that ship sailed? -- nosy: +benoithudson ___ Python tracker ___ ___

[issue41100] Support macOS 11 and Apple Silicon Macs

2021-04-08 Thread Maxime Belanger
Maxime Belanger added the comment: I had some time today, so I took a crack at merging this into Python 3.8. I've filed GH-25274 with my proposal. To summarize, I'm suggesting back porting all changes from bpo-41100 (as well as the subsequent bpo-42688) but without the weak-linking changes t

[issue41100] Support macOS 11 and Apple Silicon Macs

2021-04-08 Thread Max Bélanger
Change by Max Bélanger : -- nosy: +maxbelanger nosy_count: 18.0 -> 19.0 pull_requests: +24010 pull_request: https://github.com/python/cpython/pull/25274 ___ Python tracker ___ _

[issue41100] Support macOS 11 and Apple Silicon Macs

2021-03-24 Thread Roundup Robot
Change by Roundup Robot : -- pull_requests: +23769 pull_request: https://github.com/python/cpython/pull/25014 ___ Python tracker ___ ___

[issue41100] Support macOS 11 and Apple Silicon Macs

2021-02-22 Thread Gregory Szorc
Gregory Szorc added the comment: I ran into a minor issue with the ctypes extension and the _dyld_shared_cache_contains_path dependency that was added as part of this work (commit e8b1c038b14b5fc8120aab62c9bf5fb840274cb6). When building on Intel macOS 10.15 using an 11.x SDK, the configure c

[issue41100] Support macOS 11 and Apple Silicon Macs

2021-02-18 Thread Mark Dickinson
Change by Mark Dickinson : -- nosy: -mark.dickinson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue41100] Support macOS 11 and Apple Silicon Macs

2021-02-09 Thread Ronald Oussoren
Ronald Oussoren added the comment: There is no ETA. I'm spending more time away from the computer and on other projects when I'm not at work. I also have no personal need for 3.8 support. If anyone else is up to the job: the back port to 3.9 should be a good starting point, but I don't trust

[issue41100] Support macOS 11 and Apple Silicon Macs

2021-02-08 Thread John Reese
John Reese added the comment: Is there an ETA for having Big Sur support backported to the 3.8 branch, or is it already there and I'm just not seeing it here? -- nosy: +jreese ___ Python tracker ___

[issue41100] Support macOS 11 and Apple Silicon Macs

2020-12-13 Thread Ned Deily
Ned Deily added the comment: > Are there plans to backport PR 22855 to any branches older than 3.9? The plan is to also support 3.8 on Big Sur and Apple Silicon as 3.8 is still in bugfix mode. There are no plans to backport support to 3.7 and 3.6 which are in the security-fix-only phase of

[issue41100] Support macOS 11 and Apple Silicon Macs

2020-12-13 Thread Joshua Root
Joshua Root added the comment: Are there plans to backport PR 22855 to any branches older than 3.9? -- nosy: +jmr ___ Python tracker ___ __

[issue41100] Support macOS 11 and Apple Silicon Macs

2020-11-28 Thread Andy Dirnberger
Change by Andy Dirnberger : -- nosy: +dirn ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue41100] Support macOS 11 and Apple Silicon Macs

2020-11-23 Thread Ned Deily
Ned Deily added the comment: New changeset 96d906b144e6e6aa96c5ffebecbcc5d38034bbda by Miss Islington (bot) in branch '3.9': bpo-41100: in test_platform, ignore 10.16 (GH-23485) (GH-23486) https://github.com/python/cpython/commit/96d906b144e6e6aa96c5ffebecbcc5d38034bbda --

[issue41100] Support macOS 11 and Apple Silicon Macs

2020-11-23 Thread miss-islington
Change by miss-islington : -- pull_requests: +22373 pull_request: https://github.com/python/cpython/pull/23486 ___ Python tracker ___ __

[issue41100] Support macOS 11 and Apple Silicon Macs

2020-11-23 Thread Ned Deily
Ned Deily added the comment: New changeset c0c23ea72b76b06b7db0d09415fa90bab8ded63a by Ned Deily in branch 'master': bpo-41100: in test_platform, ignore 10.16 (GH-23485) https://github.com/python/cpython/commit/c0c23ea72b76b06b7db0d09415fa90bab8ded63a -- ___

[issue41100] Support macOS 11 and Apple Silicon Macs

2020-11-23 Thread Ned Deily
Change by Ned Deily : -- pull_requests: +22372 pull_request: https://github.com/python/cpython/pull/23485 ___ Python tracker ___ ___

[issue41100] Support macOS 11 and Apple Silicon Macs

2020-11-23 Thread miss-islington
miss-islington added the comment: New changeset 3266991e721286e942125350ca41e1403d8384d6 by Miss Islington (bot) in branch '3.9': bpo-41100: minor build installer fixes (GH-23480) https://github.com/python/cpython/commit/3266991e721286e942125350ca41e1403d8384d6 -- _

[issue41100] Support macOS 11 and Apple Silicon Macs

2020-11-23 Thread miss-islington
Change by miss-islington : -- pull_requests: +22371 pull_request: https://github.com/python/cpython/pull/23484 ___ Python tracker ___ __

[issue41100] Support macOS 11 and Apple Silicon Macs

2020-11-23 Thread Ned Deily
Ned Deily added the comment: New changeset 936533ca0415c40dc64ccb5f8857720f32b3fcb4 by Ned Deily in branch 'master': bpo-41100: minor build installer fixes (GH-23480) https://github.com/python/cpython/commit/936533ca0415c40dc64ccb5f8857720f32b3fcb4 -- __

[issue41100] Support macOS 11 and Apple Silicon Macs

2020-11-23 Thread Ned Deily
Change by Ned Deily : -- pull_requests: +22370 pull_request: https://github.com/python/cpython/pull/23480 ___ Python tracker ___ ___

[issue41100] Support macOS 11 and Apple Silicon Macs

2020-11-22 Thread Ned Deily
Ned Deily added the comment: New changeset 5aa6c99da1087ded0ccb99bb12591e5ab31d75c3 by Ned Deily in branch '3.9': bpo-41100: Update Whatsnew and installer ReadME for 3.9.1 (GH-23472) https://github.com/python/cpython/commit/5aa6c99da1087ded0ccb99bb12591e5ab31d75c3 -- __

[issue41100] Support macOS 11 and Apple Silicon Macs

2020-11-22 Thread Ned Deily
Change by Ned Deily : -- pull_requests: +22362 pull_request: https://github.com/python/cpython/pull/23472 ___ Python tracker ___ ___

[issue41100] Support macOS 11 and Apple Silicon Macs

2020-11-22 Thread Ned Deily
Change by Ned Deily : -- pull_requests: -21922 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue41100] Support macOS 11 and Apple Silicon Macs

2020-11-22 Thread Ronald Oussoren
Ronald Oussoren added the comment: New changeset e8b1c038b14b5fc8120aab62c9bf5fb840274cb6 by Ronald Oussoren in branch '3.9': [3.9] bpo-41100: Support macOS 11 and Apple Silicon (GH-22855) (GH-23295) https://github.com/python/cpython/commit/e8b1c038b14b5fc8120aab62c9bf5fb840274cb6 -

[issue41100] Support macOS 11 and Apple Silicon Macs

2020-11-21 Thread Ronald Oussoren
Change by Ronald Oussoren : -- pull_requests: +22349 pull_request: https://github.com/python/cpython/pull/23293 ___ Python tracker ___ _

[issue41100] Support macOS 11 and Apple Silicon Macs

2020-11-21 Thread Ned Deily
Ned Deily added the comment: New changeset 442746af649cc2c20d690acfabf44ab0e06c36b4 by Ronald Oussoren in branch 'master': bpo-41100: Stripping '-arch arm64' didn't work after all (GH-23280) https://github.com/python/cpython/commit/442746af649cc2c20d690acfabf44ab0e06c36b4 -- __

[issue41100] Support macOS 11 and Apple Silicon Macs

2020-11-16 Thread Ned Deily
Ned Deily added the comment: @mattip, it could also be due to https://github.com/pypa/packaging/pull/319. I’m away from the keyboard fir the moment and can’t investigate further. -- ___ Python tracker __

[issue41100] Support macOS 11 and Apple Silicon Macs

2020-11-16 Thread mattip
mattip added the comment: Over at NumPy we are getting reports that some python built for macOSx 11 is not accepting wheels with the `macosx_10_9_x86_64` platform tag. Could it be related to this issue, another open issue, or some other provider's python? xref https://github.com/numpy/numpy/

[issue41100] Support macOS 11 and Apple Silicon Macs

2020-11-16 Thread Max Desiatov
Change by Max Desiatov : -- nosy: -MaxDesiatov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue41100] Support macOS 11 and Apple Silicon Macs

2020-11-15 Thread Ned Deily
Change by Ned Deily : -- title: Build failure on macOS 11 (beta) -> Support macOS 11 and Apple Silicon Macs ___ Python tracker ___