Skip to content

Commit ed74406

Browse files
Final release preparations (#5597)
1 parent b5205bb commit ed74406

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
release-job:
1010
runs-on: ubuntu-latest
1111
env:
12-
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
12+
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN_PYMC3 }}
1313
steps:
1414
- uses: actions/checkout@v2
1515
- name: Set up Python

RELEASE-NOTES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release Notes
22

3-
## PyMC 3.11.5 (TBD)
3+
## PyMC 3.11.5 (14 March 2022)
44
### Backports
55
+ The `pm.logp(rv, x)` syntax is now available and recommended to make your model code `v4`-ready. Note that this backport is just an alias and much less capable than what's available with `pymc >=4` (see [#5083](https://github.com/pymc-devs/pymc/pulls/5083)).
66
+ The `pm.Distribution(testval=...)` kwarg was deprecated and will be replaced by `pm.Distribution(initval=...)`in `pymc >=4` (see [#5226](https://github.com/pymc-devs/pymc/pulls/5226)).

pymc3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
# pylint: disable=wildcard-import
16-
__version__ = "3.11.4"
16+
__version__ = "3.11.5"
1717

1818
import logging
1919
import multiprocessing as mp

0 commit comments

Comments
 (0)