Skip to content

Troves for python 3.11 and 3.12 #2384

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions .github/workflows/keras_unit_test_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,55 @@ jobs:
name: Test Results (Py310-TF2.15-ubuntu)
path: ./**/test-results-*.xml

Test_py311_py_with_latest_tf:
strategy:
fail-fast: false
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Run Tests (Py311-TF2.18)
uses: ./.github/actions/keras_unit_test
with:
tf_version: '2.18.0'
python_version: '3.11'
ort_version: '1.16.3'
onnx_version: '1.16.1'

- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v4
with:
name: Test Results (Py311-TF2.15-ubuntu)
path: ./**/test-results-*.xml


Test_py312_py_with_tf1_18: # Do not change this name because it is used in Ruleset of this repo.
strategy:
fail-fast: false
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Run Tests (Py312-TF2.18)
uses: ./.github/actions/keras_unit_test
with:
tf_version: '2.18.0'
python_version: '3.12'
ort_version: '1.16.3'
onnx_version: '1.16.1'

- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v4
with:
name: Test Results (Py312-TF2.15-ubuntu)
path: ./**/test-results-*.xml

Test_py37_with_tf1_15: # Do not change this name because it is used in Ruleset of this repo.
strategy:
fail-fast: false
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/pretrained_model_test_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,12 +102,20 @@ jobs:
name:
- 'py38-tf2.13'
- 'py39-tf2.15'
- 'py311-tf2.18'
- 'py312-tf2.18
os: ['ubuntu-latest', 'windows-2022']
opset_version: ['18', '15']
ort_version: ['1.16.3']
onnx_version: ['1.16.1']
skip_tflite: ['False']
include:
- name: 'py311-tf2.18'
tf_version: '2.18.0'
python_version: '3.11'
- name: 'py312-tf2.18'
tf_version: '2.18.0'
python_version: '3.12'
- name: 'py38-tf2.13'
tf_version: '2.13.0'
python_version: '3.8'
Expand Down Expand Up @@ -154,4 +162,4 @@ jobs:
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
with:
files: "**/pytest*.xml"
files: "**/pytest*.xml"
10 changes: 9 additions & 1 deletion .github/workflows/unit_test_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,20 @@ jobs:
name:
- 'py38-tf2.13'
- 'py39-tf2.15'
- 'py312-tf2.18'
- 'py311-tf2.18'
os: ['ubuntu-latest', 'windows-2022']
opset_version: ['18', '15']
ort_version: ['1.16.3']
onnx_version: ['1.16.1']
skip_tflite: ['False']
include:
- name: 'py312-tf2.18'
tf_version: '2.18.0'
python_version: '3.12'
- name: 'py311-tf2.18'
tf_version: '2.18.0'
python_version: '3.11'
- name: 'py38-tf2.13'
tf_version: '2.13.0'
python_version: '3.8'
Expand Down Expand Up @@ -137,4 +145,4 @@ jobs:
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
with:
files: "artifacts/**/*.xml"
files: "artifacts/**/*.xml"
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,5 +98,7 @@ def run(self):
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10']
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12']
)
Loading