summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLarry Hastings <larry@hastings.org>2019-03-18 16:51:26 (GMT)
committerLarry Hastings <larry@hastings.org>2019-03-18 16:51:26 (GMT)
commite76cbc781044ee01b059f3702c580e66266b84c5 (patch)
treeada069d956f8409f71dd5e29417f0ae552b420df
parent8daddaefe3ec9ad0c77e6791d4104bdcf028c0b7 (diff)
downloadcpython-e76cbc781044ee01b059f3702c580e66266b84c5.zip
cpython-e76cbc781044ee01b059f3702c580e66266b84c5.tar.gz
cpython-e76cbc781044ee01b059f3702c580e66266b84c5.tar.bz2
Version bump for 3.4.10.v3.4.10
-rw-r--r--Include/patchlevel.h6
-rw-r--r--README23
2 files changed, 24 insertions, 5 deletions
diff --git a/Include/patchlevel.h b/Include/patchlevel.h
index 713d090..ad5c249 100644
--- a/Include/patchlevel.h
+++ b/Include/patchlevel.h
@@ -19,11 +19,11 @@
#define PY_MAJOR_VERSION 3
#define PY_MINOR_VERSION 4
#define PY_MICRO_VERSION 10
-#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.4.10rc1+"
+#define PY_VERSION "3.4.10"
/*--end constants--*/
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
diff --git a/README b/README
index 6440790..80db037 100644
--- a/README
+++ b/README
@@ -1,10 +1,29 @@
-This is Python version 3.4.10rc1
-================================
+This is Python version 3.4.10
+=============================
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Python Software
Foundation. All rights reserved.
+Python 3.4 Is No Longer Supported
+---------------------------------
+
+Python 3.4.10 is the final release in the Python 3.4 series. As of this
+release, the 3.4 branch has been retired, no further changes to 3.4 will be
+accepted, and no new releases will be made. This is standard Python policy;
+Python releases get five years of support and are then retired.
+
+If you're still using Python 3.4, you should consider upgrading to the
+current version--3.7.2 as of this writing. Newer versions of Python
+have many new features, performance improvements, and bug fixes, which
+should all serve to enhance your Python programming experience.
+
+We in the Python core development community thank you for your interest
+in 3.4, and we wish you all the best!
+
+Python 3.x
+----------
+
Python 3.x is a new version of the language, which is incompatible with the 2.x
line of releases. The language is mostly the same, but many details, especially
how built-in objects like dictionaries and strings work, have changed