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
[MNT] Remove python 3.12 constraint for deep learners (#2256)
* remove py312 constraint
* add equal to py version
* remove config from encoder
* Update test_all_networks.py
* Update base.py
* Update _encoder.py
* change to <3.13
* base init too to 3.13
---------
Co-authored-by: Tony Bagnall <[email protected]>
Co-authored-by: Matthew Middlehurst <[email protected]>
Copy file name to clipboardExpand all lines: pyproject.toml
+2-2
Original file line number
Diff line number
Diff line change
@@ -69,14 +69,14 @@ all_extras = [
69
69
"seaborn>=0.11.0",
70
70
"statsmodels>=0.12.1",
71
71
"stumpy>=1.5.1",
72
-
"tensorflow>=2.14; python_version < '3.12'",
72
+
"tensorflow>=2.14",
73
73
"torch>=1.13.1",
74
74
"tsfresh>=0.20.0",
75
75
"tslearn>=0.5.2",
76
76
"sparse"
77
77
]
78
78
dl = [
79
-
"tensorflow>=2.14; python_version < '3.12'",
79
+
"tensorflow>=2.14",
80
80
]
81
81
unstable_extras = [
82
82
"mrsqm>=0.0.7,<0.1.0; platform_system != 'Windows' and python_version < '3.12'", # requires gcc and fftw to be installed for Windows and some other OS (see http://www.fftw.org/index.html)
0 commit comments