Skip to content

Remove py3.8 #2397

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 1 commit 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
6 changes: 3 additions & 3 deletions .github/workflows/keras_application_test_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,19 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Run Tests (Py38-TF2.9)
- name: Run Tests (Py39-TF2.9)
uses: ./.github/actions/keras_application_test
with:
tf_version: '2.9.0'
python_version: '3.8'
python_version: '3.9'
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 (Py38-TF2.9-ubuntu)
name: Test Results (Py39-TF2.9-ubuntu)
path: ./**/test-results-*.xml

Test_max_py_with_latest_tf: # Do not change this name because it is used in Ruleset of this repo.
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/keras_unit_test_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Run Tests (Py38-TF2.9)
- name: Run Tests (Py39-TF2.9)
uses: ./.github/actions/keras_unit_test
with:
tf_version: '2.9.0'
python_version: '3.8'
python_version: '3.9'
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 (Py38-TF2.9-ubuntu)
name: Test Results (Py39-TF2.9-ubuntu)
path: ./**/test-results-*.xml

Test_max_py_with_latest_tf: # Do not change this name because it is used in Ruleset of this repo.
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pretrained_model_test_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Run Tests (Py38-TF2.9-18)
- name: Run Tests (Py39-TF2.9-18)
uses: ./.github/actions/pretrained_model_test
with:
os: 'ubuntu-latest'
tf_version: '2.9.0'
python_version: '3.8'
python_version: '3.9'
ort_version: '1.16.3'
onnx_version: '1.16.1'
opset_version: '18'
Expand All @@ -39,7 +39,7 @@ jobs:
if: always()
uses: actions/upload-artifact@v4
with:
name: Test Results (Py38-TF2.9-18-ubuntu)
name: Test Results (Py39-TF2.9-18-ubuntu)
path: ./**/test-results-*.xml

Test_max_py_with_latest_tf: # Do not change this name because it is used in 'publish-test-results' section below.
Expand Down
10 changes: 3 additions & 7 deletions .github/workflows/unit_test_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Run Tests (Py38-TF2.9-18)
- name: Run Tests (Py39-TF2.9-18)
uses: ./.github/actions/unit_test
with:
os: 'ubuntu-latest'
tf_version: '2.9.0'
python_version: '3.8'
python_version: '3.9'
ort_version: '1.16.3'
onnx_version: '1.16.1'
opset_version: '18'
Expand All @@ -39,7 +39,7 @@ jobs:
if: always()
uses: actions/upload-artifact@v4
with:
name: Test Results (Py38-TF2.9-18-ubuntu)
name: Test Results (Py39-TF2.9-18-ubuntu)
path: ./**/test-results-*.xml

Test_max_py_with_latest_tf: # Do not change this name because it is used in Ruleset of this repo.
Expand Down Expand Up @@ -74,17 +74,13 @@ jobs:
fail-fast: false
matrix:
name:
- 'py38-tf2.13'
- 'py39-tf2.15'
os: ['ubuntu-latest', 'windows-2022']
opset_version: ['18', '15']
ort_version: ['1.16.3']
onnx_version: ['1.16.1']
skip_tflite: ['False']
include:
- name: 'py38-tf2.13'
tf_version: '2.13.0'
python_version: '3.8'
- name: 'py39-tf2.15'
tf_version: '2.15.0'
python_version: '3.9'
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ def run(self):
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3',
'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