-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
cpython: several fixes #10795
Closed
Closed
cpython: several fixes #10795
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
6a61d41
several fixes
maksim-petukhov 148472b
update config.yml
maksim-petukhov 12ba977
fix include in patch
maksim-petukhov 4d0aa85
rename win7 support restore option
maksim-petukhov 7195bca
fix include in patch
maksim-petukhov cbedb4a
keep the number of lines after patch the same
maksim-petukhov e8232ed
fix test package fails with "found wrong interpreter" when disk lette…
maksim-petukhov 9916b9c
- a workaround for https://bugs.python.org/issue45405
SSE4 c7968eb
restore version 3.10.0
maksim-petukhov 3cb2b35
fix hooks failed
maksim-petukhov c3a903d
- a workaround for MACOSX_DEPLOYMENT_TARGET
SSE4 62ff746
- capture config.log
SSE4 d845b96
- temporarily disable 2.8. investigate what happens with 3.x first.
SSE4 df5fb05
- set MACOSX_DEPLOYMENT_TARGET for 3.x as well
SSE4 2ace98a
Update recipes/cpython/all/conanfile.py
SSE4 0d5fc22
temporarily disable macos builds to see if windows and linux are ok
maksim-petukhov bed1631
fix components includedirs
maksim-petukhov d0b1137
fix `replace_in_file didn't find pattern`
maksim-petukhov File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
13 changes: 0 additions & 13 deletions
13
recipes/cpython/all/patches/3.10.0-0005-disable-macos-tcltk.patch
This file was deleted.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
recipes/cpython/all/patches/3.10.0-0005-do-not-search-for-system-tkinter.patch
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- setup.py | ||
+++ setup.py | ||
@@ -2090,7 +2090,7 @@ | ||
# and _TCLTK_LIBS environment variables. | ||
if self.detect_tkinter_fromenv(): | ||
return True | ||
- | ||
+ return False | ||
# Rather than complicate the code below, detecting and building | ||
# AquaTk is a separate method. Only one Tkinter will be built on | ||
# Darwin - either AquaTk, if it is found, or X11 based Tk. |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You might want to make the libffi version dependent of the python version.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If it's working, then it's fine.
But in my experience with cpython + libffi, there is some coupling with libffi versioning and cpython versions.