Unverified 提交 68d6cef6 authored 作者: Thomas Wiecki's avatar Thomas Wiecki 提交者: GitHub

Prepare version 1.0.5 (#20)

上级 08bc1b62
...@@ -5,6 +5,31 @@ ...@@ -5,6 +5,31 @@
Old Release Notes Old Release Notes
================= =================
Theano 1.0.4 (16th of January 2019)
=====================================
This is a maintenance release of Theano, version ``1.0.4``, with no
new features, but some important bug fixes.
We recommend that everybody update to this version.
Highlights (since 1.0.3):
- Theano is now compatible with NumPy 1.16.
A total of 10 people contributed to this release since ``1.0.3``:
- wonghang
- Frederic Bastien
- Arnaud Bergeron
- Duc Nguyen
- Andrew Nelson
- Björn Linse
- Luis Mario Domenzain
- Rebecca N. Palmer
- Luciano Paz
- Dan Foreman-Mackey
Theano 1.0.3 (20th of September 2018) Theano 1.0.3 (20th of September 2018)
===================================== =====================================
......
...@@ -2,27 +2,11 @@ ...@@ -2,27 +2,11 @@
Release Notes Release Notes
============= =============
Theano 1.0.4 (16th of January 2019) Theano-PyMC 1.0.5 (on deck)
===================================== =========================================
This is a maintenance release of Theano, version ``1.0.4``, with no Highlights (since 1.0.4):
new features, but some important bug fixes.
We recommend that everybody update to this version. - First release under new name Theano-PyMC
Highlights (since 1.0.3): A total of x people contributed to this release since ``1.0.4``:
- Theano is now compatible with NumPy 1.16.
A total of 10 people contributed to this release since ``1.0.3``:
- wonghang
- Frederic Bastien
- Arnaud Bergeron
- Duc Nguyen
- Andrew Nelson
- Björn Linse
- Luis Mario Domenzain
- Rebecca N. Palmer
- Luciano Paz
- Dan Foreman-Mackey
...@@ -4,6 +4,7 @@ LICENSE ...@@ -4,6 +4,7 @@ LICENSE
======= =======
Copyright (c) 2008--2019, Theano Development Team Copyright (c) 2008--2019, Theano Development Team
Copyright (c) 2020, PyMC dev team
All rights reserved. All rights reserved.
Contains code from NumPy, Copyright (c) 2005-2016, NumPy Developers. Contains code from NumPy, Copyright (c) 2005-2016, NumPy Developers.
......
...@@ -50,7 +50,7 @@ Install the latest stable version of Theano with: ...@@ -50,7 +50,7 @@ Install the latest stable version of Theano with:
If you encountered any trouble, head to the :ref:`troubleshooting` page. If you encountered any trouble, head to the :ref:`troubleshooting` page.
The latest stable version of Theano is ``1.0.4`` (tagged with ``rel-1.0.4``). The latest stable version of Theano-PyMC is ``1.0.5`` (tagged with ``rel-1.0.5``).
libgpuarray libgpuarray
::::::::::: :::::::::::
......
...@@ -568,7 +568,7 @@ import theano and print the config variable, as in: ...@@ -568,7 +568,7 @@ import theano and print the config variable, as in:
String value: ``'None'``, ``'all'``, ``'0.3'``, ``'0.4'``, ``'0.4.1'``, String value: ``'None'``, ``'all'``, ``'0.3'``, ``'0.4'``, ``'0.4.1'``,
``'0.5'``, ``'0.6'``, ``'0.7'``, ``'0.8'``, ``'0.8.1'``, ``'0.8.2'``, ``'0.5'``, ``'0.6'``, ``'0.7'``, ``'0.8'``, ``'0.8.1'``, ``'0.8.2'``,
``'0.9'``, ``'0.10'``, ``'1.0'``, ``'1.0.1'``, ``'1.0.2'``, ``'1.0.3'``, ``'0.9'``, ``'0.10'``, ``'1.0'``, ``'1.0.1'``, ``'1.0.2'``, ``'1.0.3'``,
``'1.0.4'`` ``'1.0.4'``,``'1.0.5'``
Default: ``'0.9'`` Default: ``'0.9'``
......
...@@ -32,8 +32,10 @@ Operating System :: POSIX ...@@ -32,8 +32,10 @@ Operating System :: POSIX
Operating System :: Unix Operating System :: Unix
Operating System :: MacOS Operating System :: MacOS
Programming Language :: Python :: 3 Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
""" """
NAME = "Theano-PyMC" NAME = "Theano-PyMC"
MAINTAINER = "PyMC developers" MAINTAINER = "PyMC developers"
......
...@@ -963,6 +963,7 @@ AddConfigVar( ...@@ -963,6 +963,7 @@ AddConfigVar(
"1.0.2", "1.0.2",
"1.0.3", "1.0.3",
"1.0.4", "1.0.4",
"1.0.5",
allow_override=False, allow_override=False,
), ),
in_c_key=False, in_c_key=False,
......
from theano._version import get_versions from theano._version import get_versions
FALLBACK_VERSION = "1.0.4+unknown" FALLBACK_VERSION = "1.0.5+unknown"
info = get_versions() info = get_versions()
if info["error"] is not None: if info["error"] is not None:
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论