Skip to content

Merge with pypa/distutils@75ed79d #3366

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

Merged
merged 31 commits into from
Jun 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
722f192
TST: Test that find_library_file works with Cygwin libs
DWesl May 4, 2022
c6f28fc
Update name patterns for Cygwin libraries.
DWesl May 5, 2022
27638e3
Merge pull request #139 from DWesl/patch-2
jaraco May 9, 2022
0f5c4bd
Fixed case of CC config variable not being defined.
MilchRatchet May 18, 2022
aed7294
Fix finding headers when cross compiling
lopsided98 Sep 25, 2020
036ad4b
Move more of the GCC detection to the is_gcc method.
jaraco Jun 5, 2022
c96b9db
Remove check for undefined CC var.
jaraco Jun 5, 2022
5b814f7
Inline the first option.
jaraco Jun 5, 2022
3f6a9ad
Merge pull request #144 from MilchRatchet/main
jaraco Jun 5, 2022
6d01e89
Update Python versions to include Python 3.11.
jaraco Jun 5, 2022
053740f
Remove tests for SO config var, no longer present in Python 3.11.
jaraco Jun 5, 2022
1da8e75
Mark test as xfail. Ref #148.
jaraco Jun 6, 2022
ad9b074
Merge pull request #147 from pypa/feature/py311
jaraco Jun 6, 2022
4b587ed
👹 Feed the hobgoblins (delint).
jaraco Jun 6, 2022
255926c
Add flake8 config from jaraco/skeleton for compatibility with black.
jaraco Jun 6, 2022
3eee97a
Skip string normalization when using black.
jaraco Jun 6, 2022
ab77f7d
⚫ Fade to black.
jaraco Jun 6, 2022
c7db899
👹 Feed the hobgoblins (delint).
jaraco Jun 6, 2022
03998e6
Remove compatibility for Python 3.5 (except tests).
jaraco Jun 6, 2022
262768b
Remove compatibility for Python 3.5 in tests.
jaraco Jun 6, 2022
147379a
Merge pull request #149 from pypa/debt/delint
jaraco Jun 7, 2022
b05a823
Avoid re-using 'prefix' variable.
jaraco Jun 7, 2022
4266782
Extract separate functions for _get_python_inc_{os.name}, now that OS…
jaraco Jun 7, 2022
fabd05a
Extract functions for _get_python_inc for config or prefix variants. …
jaraco Jun 7, 2022
e5b02d2
⚫ Fade to black.
jaraco Jun 7, 2022
bf901de
Merge branch 'main' into python-inc-cross
jaraco Jun 7, 2022
43b424b
⚫ Fade to black.
jaraco Jun 7, 2022
26607e1
Extract function for posix python build.
jaraco Jun 7, 2022
75ed79d
Merge pull request #145 from lopsided98/python-inc-cross
jaraco Jun 7, 2022
423f182
Merge pypa/distutils@75ed79d
jaraco Jun 12, 2022
8177d6e
Add changelog
jaraco Jun 12, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/3366.change.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Merge with pypa/distutils@75ed79d including reformat using black, fix for Cygwin support (pypa/distutils#139), and improved support for cross compiling (pypa/distutils#144 and pypa/distutils#145).
2 changes: 1 addition & 1 deletion setuptools/_distutils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import sys
import importlib

__version__ = sys.version[:sys.version.index(' ')]
__version__ = sys.version[: sys.version.index(' ')]


try:
Expand Down
Loading