You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pymc3/__init__.py
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Copyright 2020 The PyMC Developers
1
+
# Copyright 2021 The PyMC Developers
2
2
#
3
3
# Licensed under the Apache License, Version 2.0 (the "License");
4
4
# you may not use this file except in compliance with the License.
@@ -13,7 +13,7 @@
13
13
# limitations under the License.
14
14
15
15
# pylint: disable=wildcard-import
16
-
__version__="3.11.1"
16
+
__version__="4.0"
17
17
18
18
importlogging
19
19
importmultiprocessingasmp
@@ -27,6 +27,10 @@
27
27
handler=logging.StreamHandler()
28
28
_log.addHandler(handler)
29
29
30
+
_log.info(
31
+
"You are running the v4 development version of PyMC3 which currently still lacks key features. You probably want to use the stable v3 instead which you can either install via conda or find on the v3 GitHub branch: https://github.com/pymc-devs/pymc3/tree/v3"
32
+
)
33
+
30
34
31
35
def__set_compiler_flags():
32
36
# Workarounds for Aesara compiler problems on various platforms
0 commit comments