From c48ef19eb89f3171fba0c31ac9103c0f60c0ab79 Mon Sep 17 00:00:00 2001 From: Jasha10 <8935917+Jasha10@users.noreply.github.com> Date: Tue, 6 Dec 2022 03:45:42 -0600 Subject: [PATCH] python3.11 support for plugins (#2489) --- examples/plugins/example_configsource_plugin/setup.py | 1 + examples/plugins/example_generic_plugin/setup.py | 1 + examples/plugins/example_launcher_plugin/setup.py | 1 + examples/plugins/example_registered_plugin/setup.py | 1 + examples/plugins/example_searchpath_plugin/setup.py | 1 + examples/plugins/example_sweeper_plugin/setup.py | 1 + plugins/hydra_colorlog/hydra_plugins/hydra_colorlog/__init__.py | 2 +- plugins/hydra_colorlog/news/2443.feature | 1 + plugins/hydra_colorlog/setup.py | 1 + .../hydra_plugins/hydra_joblib_launcher/__init__.py | 2 +- plugins/hydra_joblib_launcher/news/2443.feature | 1 + plugins/hydra_joblib_launcher/setup.py | 1 + plugins/hydra_nevergrad_sweeper/news/2443.feature | 1 + plugins/hydra_nevergrad_sweeper/setup.py | 1 + plugins/hydra_optuna_sweeper/news/2443.feature | 1 + plugins/hydra_optuna_sweeper/setup.py | 1 + .../hydra_plugins/hydra_rq_launcher/__init__.py | 2 +- plugins/hydra_rq_launcher/news/2443.feature | 1 + plugins/hydra_rq_launcher/setup.py | 1 + .../hydra_plugins/hydra_submitit_launcher/__init__.py | 2 +- plugins/hydra_submitit_launcher/news/2443.feature | 1 + plugins/hydra_submitit_launcher/setup.py | 1 + 22 files changed, 22 insertions(+), 4 deletions(-) create mode 100644 plugins/hydra_colorlog/news/2443.feature create mode 100644 plugins/hydra_joblib_launcher/news/2443.feature create mode 100644 plugins/hydra_nevergrad_sweeper/news/2443.feature create mode 100644 plugins/hydra_optuna_sweeper/news/2443.feature create mode 100644 plugins/hydra_rq_launcher/news/2443.feature create mode 100644 plugins/hydra_submitit_launcher/news/2443.feature diff --git a/examples/plugins/example_configsource_plugin/setup.py b/examples/plugins/example_configsource_plugin/setup.py index a2f478cd74a..ef607443e12 100644 --- a/examples/plugins/example_configsource_plugin/setup.py +++ b/examples/plugins/example_configsource_plugin/setup.py @@ -24,6 +24,7 @@ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Operating System :: OS Independent", ], install_requires=[ diff --git a/examples/plugins/example_generic_plugin/setup.py b/examples/plugins/example_generic_plugin/setup.py index 4da9ff7294b..c7648bd0a9f 100644 --- a/examples/plugins/example_generic_plugin/setup.py +++ b/examples/plugins/example_generic_plugin/setup.py @@ -24,6 +24,7 @@ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Operating System :: OS Independent", ], install_requires=[ diff --git a/examples/plugins/example_launcher_plugin/setup.py b/examples/plugins/example_launcher_plugin/setup.py index 63f8444022b..d72f33bc66a 100644 --- a/examples/plugins/example_launcher_plugin/setup.py +++ b/examples/plugins/example_launcher_plugin/setup.py @@ -24,6 +24,7 @@ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Operating System :: OS Independent", ], install_requires=[ diff --git a/examples/plugins/example_registered_plugin/setup.py b/examples/plugins/example_registered_plugin/setup.py index 55dd3afd6b5..66d10789702 100644 --- a/examples/plugins/example_registered_plugin/setup.py +++ b/examples/plugins/example_registered_plugin/setup.py @@ -24,6 +24,7 @@ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Operating System :: OS Independent", ], install_requires=[ diff --git a/examples/plugins/example_searchpath_plugin/setup.py b/examples/plugins/example_searchpath_plugin/setup.py index e49d63caacf..f88bbc2115a 100644 --- a/examples/plugins/example_searchpath_plugin/setup.py +++ b/examples/plugins/example_searchpath_plugin/setup.py @@ -26,6 +26,7 @@ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Operating System :: OS Independent", ], install_requires=[ diff --git a/examples/plugins/example_sweeper_plugin/setup.py b/examples/plugins/example_sweeper_plugin/setup.py index 62655266ae0..b4004abb434 100644 --- a/examples/plugins/example_sweeper_plugin/setup.py +++ b/examples/plugins/example_sweeper_plugin/setup.py @@ -24,6 +24,7 @@ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Operating System :: OS Independent", ], install_requires=[ diff --git a/plugins/hydra_colorlog/hydra_plugins/hydra_colorlog/__init__.py b/plugins/hydra_colorlog/hydra_plugins/hydra_colorlog/__init__.py index 678b5f3c1e6..e42a13578a7 100644 --- a/plugins/hydra_colorlog/hydra_plugins/hydra_colorlog/__init__.py +++ b/plugins/hydra_colorlog/hydra_plugins/hydra_colorlog/__init__.py @@ -1,3 +1,3 @@ # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved -__version__ = "1.2.0" +__version__ = "1.3.0.dev0" diff --git a/plugins/hydra_colorlog/news/2443.feature b/plugins/hydra_colorlog/news/2443.feature new file mode 100644 index 00000000000..5039bdd5588 --- /dev/null +++ b/plugins/hydra_colorlog/news/2443.feature @@ -0,0 +1 @@ +Support python3.11 diff --git a/plugins/hydra_colorlog/setup.py b/plugins/hydra_colorlog/setup.py index 4813ee788c0..b99b328fc2a 100644 --- a/plugins/hydra_colorlog/setup.py +++ b/plugins/hydra_colorlog/setup.py @@ -22,6 +22,7 @@ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Operating System :: OS Independent", ], install_requires=["colorlog", "hydra-core>=1.0.0"], diff --git a/plugins/hydra_joblib_launcher/hydra_plugins/hydra_joblib_launcher/__init__.py b/plugins/hydra_joblib_launcher/hydra_plugins/hydra_joblib_launcher/__init__.py index 678b5f3c1e6..e42a13578a7 100644 --- a/plugins/hydra_joblib_launcher/hydra_plugins/hydra_joblib_launcher/__init__.py +++ b/plugins/hydra_joblib_launcher/hydra_plugins/hydra_joblib_launcher/__init__.py @@ -1,3 +1,3 @@ # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved -__version__ = "1.2.0" +__version__ = "1.3.0.dev0" diff --git a/plugins/hydra_joblib_launcher/news/2443.feature b/plugins/hydra_joblib_launcher/news/2443.feature new file mode 100644 index 00000000000..5039bdd5588 --- /dev/null +++ b/plugins/hydra_joblib_launcher/news/2443.feature @@ -0,0 +1 @@ +Support python3.11 diff --git a/plugins/hydra_joblib_launcher/setup.py b/plugins/hydra_joblib_launcher/setup.py index 9a1d2b87d13..4590900afeb 100644 --- a/plugins/hydra_joblib_launcher/setup.py +++ b/plugins/hydra_joblib_launcher/setup.py @@ -21,6 +21,7 @@ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Operating System :: MacOS", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux", diff --git a/plugins/hydra_nevergrad_sweeper/news/2443.feature b/plugins/hydra_nevergrad_sweeper/news/2443.feature new file mode 100644 index 00000000000..5039bdd5588 --- /dev/null +++ b/plugins/hydra_nevergrad_sweeper/news/2443.feature @@ -0,0 +1 @@ +Support python3.11 diff --git a/plugins/hydra_nevergrad_sweeper/setup.py b/plugins/hydra_nevergrad_sweeper/setup.py index 14e76b6d923..ea208a7db6b 100644 --- a/plugins/hydra_nevergrad_sweeper/setup.py +++ b/plugins/hydra_nevergrad_sweeper/setup.py @@ -22,6 +22,7 @@ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Operating System :: OS Independent", "Development Status :: 4 - Beta", ], diff --git a/plugins/hydra_optuna_sweeper/news/2443.feature b/plugins/hydra_optuna_sweeper/news/2443.feature new file mode 100644 index 00000000000..5039bdd5588 --- /dev/null +++ b/plugins/hydra_optuna_sweeper/news/2443.feature @@ -0,0 +1 @@ +Support python3.11 diff --git a/plugins/hydra_optuna_sweeper/setup.py b/plugins/hydra_optuna_sweeper/setup.py index 389cd9e1bdb..dd31316a5e7 100644 --- a/plugins/hydra_optuna_sweeper/setup.py +++ b/plugins/hydra_optuna_sweeper/setup.py @@ -22,6 +22,7 @@ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Operating System :: POSIX :: Linux", "Operating System :: MacOS", "Development Status :: 4 - Beta", diff --git a/plugins/hydra_rq_launcher/hydra_plugins/hydra_rq_launcher/__init__.py b/plugins/hydra_rq_launcher/hydra_plugins/hydra_rq_launcher/__init__.py index 678b5f3c1e6..e42a13578a7 100644 --- a/plugins/hydra_rq_launcher/hydra_plugins/hydra_rq_launcher/__init__.py +++ b/plugins/hydra_rq_launcher/hydra_plugins/hydra_rq_launcher/__init__.py @@ -1,3 +1,3 @@ # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved -__version__ = "1.2.0" +__version__ = "1.3.0.dev0" diff --git a/plugins/hydra_rq_launcher/news/2443.feature b/plugins/hydra_rq_launcher/news/2443.feature new file mode 100644 index 00000000000..5039bdd5588 --- /dev/null +++ b/plugins/hydra_rq_launcher/news/2443.feature @@ -0,0 +1 @@ +Support python3.11 diff --git a/plugins/hydra_rq_launcher/setup.py b/plugins/hydra_rq_launcher/setup.py index 3391bf7c38a..5902b46a801 100644 --- a/plugins/hydra_rq_launcher/setup.py +++ b/plugins/hydra_rq_launcher/setup.py @@ -22,6 +22,7 @@ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Operating System :: MacOS", "Operating System :: POSIX :: Linux", ], diff --git a/plugins/hydra_submitit_launcher/hydra_plugins/hydra_submitit_launcher/__init__.py b/plugins/hydra_submitit_launcher/hydra_plugins/hydra_submitit_launcher/__init__.py index 678b5f3c1e6..e42a13578a7 100644 --- a/plugins/hydra_submitit_launcher/hydra_plugins/hydra_submitit_launcher/__init__.py +++ b/plugins/hydra_submitit_launcher/hydra_plugins/hydra_submitit_launcher/__init__.py @@ -1,3 +1,3 @@ # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved -__version__ = "1.2.0" +__version__ = "1.3.0.dev0" diff --git a/plugins/hydra_submitit_launcher/news/2443.feature b/plugins/hydra_submitit_launcher/news/2443.feature new file mode 100644 index 00000000000..5039bdd5588 --- /dev/null +++ b/plugins/hydra_submitit_launcher/news/2443.feature @@ -0,0 +1 @@ +Support python3.11 diff --git a/plugins/hydra_submitit_launcher/setup.py b/plugins/hydra_submitit_launcher/setup.py index 91971c42154..1752855f937 100644 --- a/plugins/hydra_submitit_launcher/setup.py +++ b/plugins/hydra_submitit_launcher/setup.py @@ -21,6 +21,7 @@ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Operating System :: MacOS", "Operating System :: POSIX :: Linux", "Development Status :: 4 - Beta",