Skip to content

Commit af5eb5b

Browse files
author
h2o-ops
committed
Merge remote-tracking branch origin/rel-3.46.0
2 parents 09f3ee7 + 4555225 commit af5eb5b

10 files changed

Lines changed: 58 additions & 62 deletions

File tree

h2o-docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Note that there are also some directories under the **/product** folder from the
88

99
### Requirements
1010

11-
- Python 3.6+
11+
- Python 3.7+
1212
- [Sphinx](http://www.sphinx-doc.org/)
1313
- [Read The Docs theme](https://sphinx-rtd-theme.readthedocs.io/en/stable/)
1414
- Additional extensions

h2o-docs/src/product/getting-started/python-users.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ See a notebook demonstration for how to use grid search in Python.
3131
Anaconda Cloud users
3232
--------------------
3333

34-
You can run H2O-3 in an Anaconda Cloud environment. Conda 2.7, 3.5, and 3.6 repositories are supported (as are a number of H2O-3 versions). See Anaconda's `official H2O-3 package <https://anaconda.org/h2oai/h2o/files>`__ to view a list of all available H2O-3 versions. You can refer to the `Install on Anaconda Cloud <../downloading.html#install-on-anaconda-cloud>`__ section for information about installing H2O-3 in an Anaconda Cloud.
34+
You can run H2O-3 in an Anaconda Cloud environment. Conda 3.7+ repositories are supported (as are a number of H2O-3 versions). See Anaconda's `official H2O-3 package <https://anaconda.org/h2oai/h2o/files>`__ to view a list of all available H2O-3 versions. You can refer to the `Install on Anaconda Cloud <../downloading.html#install-on-anaconda-cloud>`__ section for information about installing H2O-3 in an Anaconda Cloud.

h2o-docs/src/product/welcome.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ At a minimum, we recommend the following for compatibility with H2O-3:
6565
- **Languages**: R and Python are not required to use H2O-3 unless you want to use H2O in those environments, but Java is always required (see `below <http://docs.h2o.ai/h2o/latest-stable/h2o-docs/welcome.html#java-requirements>`__).
6666

6767
- R version 3 or later
68-
- Python 3.6.x, 3.7.x, 3.8.x, 3.9.x, 3.10.x, 3.11.x
68+
- Python 3.7.x, 3.8.x, 3.9.x, 3.10.x, 3.11.x
6969

7070
- **Browser**: An internet browser is required to use H2O-3's web UI, Flow. Supported versions include the latest version of Chrome, Firefox, Safari, or Internet Explorer.
7171
- **numpy**: H2O-3 only supports ``numpy<2``. To work around having ``numpy2`` installed, run the following command:
@@ -94,7 +94,7 @@ H2O-3 supports the following versions of Java:
9494
- **Languages**: R and Python are not required to use H2O-3 (unless you want to use H2O-3 in those environments), but Java is always required (see `Java requirements <http://docs.h2o.ai/h2o/latest-stable/h2o-docs/welcome.html#java-requirements>`__).
9595

9696
- R version 3+
97-
- Python 3.6.x, 3.7.x, 3.8.x, 3.9.x, 3.10.x, 3.11.x
97+
- Python 3.7.x, 3.8.x, 3.9.x, 3.10.x, 3.11.x
9898

9999
- **Browser**: An internet browser is required to use H2O-3's web UI, Flow.
100100

h2o-py-cloud-extensions/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,14 @@
6262
# Pick your license as you wish (should match "license" above)
6363
"License :: OSI Approved :: Apache Software License",
6464

65-
"Programming Language :: Python :: 3.6",
6665
"Programming Language :: Python :: 3.7",
6766
"Programming Language :: Python :: 3.8",
6867
],
6968

7069
keywords='machine learning, data mining, statistical analysis, modeling, big data, distributed, parallel',
7170

71+
python_requires='>=3.7',
72+
7273
packages=packages,
7374
package_data={"h2o": [
7475
"version.txt", # version file

h2o-py-mlflow-flavor/setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@
6464

6565
keywords='ML Flow, H2O-3',
6666

67+
python_requires='>=3.8',
68+
6769
packages=packages,
6870

6971
# run-time dependencies

h2o-py/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Prerequisites:
44

5-
- Python 3.6.x, 3.7.x, 3.8.x, 3.9.x or 3.10.x
5+
- Python 3.7.x, 3.8.x, 3.9.x, 3.10.x or 3.11.x
66
- Numpy 1.9.2 or greater
77

88
This module depends on **requests**, **tabulate**, and **scikit-learn** modules, all of which are available on pypi:

h2o-py/h2o/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
if sys.version_info.major < 3:
1515
raise Exception("H2O-3 runs only on Python 3. Your Python version is %s." % sys.version)
1616

17-
if sys.version_info.minor < 6:
17+
if sys.version_info.minor < 7:
1818
warnings.showwarning(
19-
"Your Python version %s is not supported. Officially supported versions are 3.6.x - 3.9.x" % sys.version,
19+
"Your Python version %s is not supported. Officially supported versions are 3.7.x - 3.11.x" % sys.version,
2020
Warning,
2121
"h2o",
2222
1)

h2o-py/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@
6767
"License :: OSI Approved :: Apache Software License",
6868

6969
# Specify the Python versions you support here. In particular, ensure
70-
"Programming Language :: Python :: 3.6",
7170
"Programming Language :: Python :: 3.7",
7271
"Programming Language :: Python :: 3.8",
7372
"Programming Language :: Python :: 3.9",
@@ -77,6 +76,8 @@
7776

7877
keywords='machine learning, data mining, statistical analysis, modeling, big data, distributed, parallel',
7978

79+
python_requires='>=3.7',
80+
8081
packages=packages,
8182
package_data={"h2o": [
8283
"h2o_data/*.*", # several small datasets used in demos/examples

scripts/jenkins/groovy/buildConfig.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ class BuildConfig {
5151

5252
public static final String RELEASE_BRANCH_PREFIX = 'rel-'
5353

54-
public static final String DEFAULT_PYTHON_VERSION = '3.6'
55-
public static final List PYTHON_VERSIONS = ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
54+
public static final String DEFAULT_PYTHON_VERSION = '3.7'
55+
public static final List PYTHON_VERSIONS = ['3.7', '3.8', '3.9', '3.10', '3.11']
5656
public static final List R_VERSIONS = ['3.3.3', '3.4.1']
5757

5858
public static final String MAKEFILE_PATH = 'scripts/jenkins/Makefile.jenkins'

0 commit comments

Comments
 (0)