Merged
Conversation
Add support for python3.9 to python3.14, using tensorflow2.20 and keras 3. Drops support for python3.6 Weights downloaded are not forward-compatible, the weight downloading macro needs to be reran.
nicolasdalsass
commented
Feb 2, 2026
Gaubiche
reviewed
Feb 4, 2026
Member
Gaubiche
left a comment
There was a problem hiding this comment.
We still have a bit of Python3.6 in python-runnables>create-api-service-v2>runnable.json

Also it goes a bit beyond the scope of this PR, but maybe we should make the endpoint default to the plugin code-env, maybe that's not possible because it doesn't seem that such environments selectable though 😢
Tested
- Code-env creation for 3.9, 3.10, 3.11, 3.12 and 3.13
- Download model macro
- Classification model retrain on images
- Image classification
- Images feature extraction
- Tensorboard webapp
- Api Service Macro and ran the test query
CHANGELOG.md
Outdated
| ## Version 3.0.0 - Python versions supported update - Breaking change - 2025-02 | ||
| - ⚠️ Drop python3.6 support | ||
| - ⚠️ Base model weights needs redownloading to get weights in keras 3 format. | ||
| - Supports Python3.9, 3.10, 3.11, 3.12, 3.13, 3.14 |
Member
There was a problem hiding this comment.
Suggested change
| - Supports Python3.9, 3.10, 3.11, 3.12, 3.13, 3.14 | |
| - Supports Python3.9, 3.10, 3.11, 3.12, 3.13 |
| "label": "Environment name", | ||
| "type": "CODE_ENV", | ||
| "description":"Must be a PYTHON3 env containing the required packages: scikit-learn==0.23.1, tensorflow==2.2.2, h5py>=2.10.0, Pillow==8.1.1, tables==3.6.1, GPUtil==1.4.0", | ||
| "description":"Must be a Python 3.9+ env containing the required packages: scikit-learn, tensorflow, h5py, Pillow, tables, GPUtil", |
Member
There was a problem hiding this comment.
Suggested change
| "description":"Must be a Python 3.9+ env containing the required packages: scikit-learn, tensorflow, h5py, Pillow, tables, GPUtil", | |
| "description":"Must be a Python 3.9-3.13 env containing the required packages: scikit-learn, tensorflow, h5py, Pillow, tables, GPUtil", |
Gaubiche
approved these changes
Feb 6, 2026
Member
Gaubiche
left a comment
There was a problem hiding this comment.
LGTM ✅
Tested the creation of code-env from the api creation macro
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add support for python3.9 to python3.14, using tensorflow2.20 and keras 3.
Drops support for python3.6
Weights downloaded are not forward-compatible, the weight downloading macro needs to be reran.