summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Deily <nad@python.org>2020-06-27 04:35:53 -0400
committerNed Deily <nad@python.org>2020-06-27 04:35:53 -0400
commit4b47a5b6ba66b02df9392feb97b8ead916f8c1fa (patch)
treeebc7157af0b5fc52180bc2ed7c0367c5d33af9ad
parentBPO-41100: Support macOS 11 when building (GH-21113) (GH-21155) (diff)
downloadcpython-4b47a5b6ba66b02df9392feb97b8ead916f8c1fa.tar.gz
cpython-4b47a5b6ba66b02df9392feb97b8ead916f8c1fa.tar.bz2
cpython-4b47a5b6ba66b02df9392feb97b8ead916f8c1fa.zip
3.7.8v3.7.8
-rw-r--r--Include/patchlevel.h6
-rw-r--r--Misc/NEWS.d/3.7.8.rst21
-rw-r--r--Misc/NEWS.d/next/Tests/2020-06-17-17-27-07.bpo-41009.Rvn6OQ.rst2
-rw-r--r--Misc/NEWS.d/next/macOS/2020-06-24-13-51-57.bpo-41100.mcHdc5.rst1
-rw-r--r--README.rst4
5 files changed, 26 insertions, 8 deletions
diff --git a/Include/patchlevel.h b/Include/patchlevel.h
index 17d537092b4..c1bdb834d63 100644
--- a/Include/patchlevel.h
+++ b/Include/patchlevel.h
@@ -19,11 +19,11 @@
#define PY_MAJOR_VERSION 3
#define PY_MINOR_VERSION 7
#define PY_MICRO_VERSION 8
-#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
-#define PY_RELEASE_SERIAL 1
+#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
+#define PY_RELEASE_SERIAL 0
/* Version as a string */
-#define PY_VERSION "3.7.8rc1+"
+#define PY_VERSION "3.7.8"
/*--end constants--*/
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
diff --git a/Misc/NEWS.d/3.7.8.rst b/Misc/NEWS.d/3.7.8.rst
new file mode 100644
index 00000000000..678d1c01996
--- /dev/null
+++ b/Misc/NEWS.d/3.7.8.rst
@@ -0,0 +1,21 @@
+.. bpo: 41009
+.. date: 2020-06-17-17-27-07
+.. nonce: Rvn6OQ
+.. release date: 2020-06-27
+.. section: Tests
+
+Fix use of ``support.require_{linux|mac|freebsd}_version()`` decorators as
+class decorator.
+
+..
+
+.. bpo: 41100
+.. date: 2020-06-24-13-51-57
+.. nonce: mcHdc5
+.. section: macOS
+
+Fix configure error when building on macOS 11. Note that 3.7.8 was released
+shortly after the first developer preview of macOS 11 (Big Sur); there are
+other known issues with building and running on the developer preview. Big
+Sur is expected to be fully supported in a future bugfix release of Python
+3.8.x and with 3.9.0.
diff --git a/Misc/NEWS.d/next/Tests/2020-06-17-17-27-07.bpo-41009.Rvn6OQ.rst b/Misc/NEWS.d/next/Tests/2020-06-17-17-27-07.bpo-41009.Rvn6OQ.rst
deleted file mode 100644
index 1208c119a35..00000000000
--- a/Misc/NEWS.d/next/Tests/2020-06-17-17-27-07.bpo-41009.Rvn6OQ.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Fix use of ``support.require_{linux|mac|freebsd}_version()`` decorators as
-class decorator.
diff --git a/Misc/NEWS.d/next/macOS/2020-06-24-13-51-57.bpo-41100.mcHdc5.rst b/Misc/NEWS.d/next/macOS/2020-06-24-13-51-57.bpo-41100.mcHdc5.rst
deleted file mode 100644
index ded66b567a9..00000000000
--- a/Misc/NEWS.d/next/macOS/2020-06-24-13-51-57.bpo-41100.mcHdc5.rst
+++ /dev/null
@@ -1 +0,0 @@
-Support macOS 11 when building.
diff --git a/README.rst b/README.rst
index 507b6c46b7a..557078399cf 100644
--- a/README.rst
+++ b/README.rst
@@ -1,5 +1,5 @@
-This is Python version 3.7.8 candidate 1+
-=========================================
+This is Python version 3.7.8
+============================
.. image:: https://travis-ci.org/python/cpython.svg?branch=3.7
:alt: CPython build status on Travis CI