Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32.3k
Document Python build requirements#108646
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes from1 commit
76cfe6f
ccd7ae6
0263d53
82be2e8
d5d6d45
f3cea5f
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
- Loading branch information
Uh oh!
There was an error while loading.Please reload this page.
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -5,7 +5,9 @@ Configure Python | ||
Build Requirements | ||
================== | ||
Features and minimum versions required to build CPython: | ||
* On Windows, Microsoft Visual Studio 2017 or later is required. | ||
* A `C11 <https://en.cppreference.com/w/c/11>`_ compiler. `Optional C11 | ||
features | ||
@@ -18,13 +20,19 @@ Features required to build CPython: | ||
* Support for threads. | ||
* OpenSSL 1.1.1 for the :mod:`ssl` and :mod:`hashlib` extension modules. | ||
vstinner marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
* SQLite 3.15.2 for the :mod:`sqlite3` extension module. | ||
vstinner marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
* Tcl/Tk 8.5.12 for the :mod:`tkinter` module. | ||
* Autoconf 2.71 and aclocal 1.16.4 are required to regenerate the ``configure`` | ||
script. | ||
.. versionchanged:: 3.11 | ||
C11 compiler, IEEE 754 and NaN support are now required. | ||
On Windows, Visual Studio 2017 or later is required. | ||
Tcl/Tk version 8.5.12 is now required for the :mod:`tkinter` module. | ||
.. versionchanged:: 3.10 | ||
OpenSSL 1.1.1 is now required. | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -815,7 +815,7 @@ Build Changes | ||
============= | ||
* Autoconf 2.71 and aclocal 1.16.4 is now required to regenerate | ||
the ``configure`` script. | ||
vstinner marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
(Contributed by Christian Heimes in :gh:`89886`.) | ||
* SQLite 3.15.2 or newer is required to build the :mod:`sqlite3` extension module. | ||