diff --git a/.github/workflows/develop_install.yml b/.github/workflows/develop_install.yml index bdc0df76b..4f9da7545 100644 --- a/.github/workflows/develop_install.yml +++ b/.github/workflows/develop_install.yml @@ -15,7 +15,7 @@ jobs: matrix: - python_version: ['3.8', '3.9'] + python_version: ['3.9', '3.10'] pytorch_version: ['1.9.1', '1.10.1', '1.11.0', '1.12.1', '1.13.0', '2.0.1', '2.1.0'] platform: ['windows-latest', 'ubuntu-latest', 'macos-latest'] diff --git a/.github/workflows/end_to_end.yml b/.github/workflows/end_to_end.yml index a83ba8899..276010e58 100644 --- a/.github/workflows/end_to_end.yml +++ b/.github/workflows/end_to_end.yml @@ -15,7 +15,7 @@ jobs: matrix: - python_version: ['3.8', '3.9'] + python_version: ['3.9', '3.10'] pytorch_version: ['1.9.1', '1.10.1', '1.11.0', '1.12.1', '1.13.0', '2.0.1', '2.1.0'] platform: ['windows-latest', 'ubuntu-latest', 'macos-latest'] diff --git a/.github/workflows/examples_llm_pytest.yml b/.github/workflows/examples_llm_pytest.yml index 065a06738..73bc44bde 100644 --- a/.github/workflows/examples_llm_pytest.yml +++ b/.github/workflows/examples_llm_pytest.yml @@ -15,7 +15,7 @@ jobs: matrix: - python_version: ['3.8', '3.9'] + python_version: ['3.9', '3.10'] pytorch_version: ['2.2.2', '2.3.1', '2.4.0'] platform: ['windows-latest', 'ubuntu-latest', 'macos-latest'] jit_status: ['jit_disabled', 'jit_enabled'] diff --git a/.github/workflows/examples_pytest.yml b/.github/workflows/examples_pytest.yml index 262625e01..4bd7153d7 100644 --- a/.github/workflows/examples_pytest.yml +++ b/.github/workflows/examples_pytest.yml @@ -15,7 +15,7 @@ jobs: matrix: - python_version: ['3.8', '3.9'] + python_version: ['3.9', '3.10'] pytorch_version: ['1.9.1', '1.10.1', '1.11.0', '1.12.1', '1.13.0', '2.0.1', '2.1.0'] platform: ['windows-latest', 'ubuntu-latest', 'macos-latest'] jit_status: ['jit_disabled', 'jit_enabled'] diff --git a/.github/workflows/finn_integration.yml b/.github/workflows/finn_integration.yml index f62876a45..44d07e27e 100644 --- a/.github/workflows/finn_integration.yml +++ b/.github/workflows/finn_integration.yml @@ -15,7 +15,7 @@ jobs: matrix: - python_version: ['3.8', '3.9'] + python_version: ['3.9', '3.10'] pytorch_version: ['1.9.1', '1.10.1', '1.11.0', '1.12.1', '1.13.0', '2.0.1', '2.1.0'] platform: ['windows-latest', 'ubuntu-latest'] diff --git a/.github/workflows/gen_github_actions.py b/.github/workflows/gen_github_actions.py index 2c4908a6c..b252039d2 100644 --- a/.github/workflows/gen_github_actions.py +++ b/.github/workflows/gen_github_actions.py @@ -16,7 +16,7 @@ ENDTOEND_YML = 'end_to_end.yml' # Reduced Test for PRs, except when a review is requested -PYTHON_VERSIONS_REDUCED = ('3.8',) +PYTHON_VERSIONS_REDUCED = ('3.9',) PYTORCH_LIST_REDUCED = ["1.9.1", "1.13.0", "2.1.0"] @@ -38,7 +38,7 @@ 'jit_disabled',])]) # Data shared betwen Nox sessions and Github Actions, formatted as tuples -PYTHON_VERSIONS = ('3.8', '3.9') +PYTHON_VERSIONS = ('3.9', '3.10') PYTORCH_VERSIONS = ('1.9.1', '1.10.1', '1.11.0', '1.12.1', '1.13.0', '2.0.1', '2.1.0') JIT_STATUSES = ('jit_disabled', 'jit_enabled') diff --git a/.github/workflows/notebook.yml b/.github/workflows/notebook.yml index 4e8c06e78..c4be23375 100644 --- a/.github/workflows/notebook.yml +++ b/.github/workflows/notebook.yml @@ -15,7 +15,7 @@ jobs: matrix: - python_version: ['3.8', '3.9'] + python_version: ['3.9', '3.10'] pytorch_version: ['1.9.1', '1.10.1', '1.11.0', '1.12.1', '1.13.0', '2.0.1', '2.1.0'] platform: ['windows-latest', 'ubuntu-latest', 'macos-latest'] diff --git a/.github/workflows/ort_integration.yml b/.github/workflows/ort_integration.yml index 02c75fcf2..0a115b23f 100644 --- a/.github/workflows/ort_integration.yml +++ b/.github/workflows/ort_integration.yml @@ -15,7 +15,7 @@ jobs: matrix: - python_version: ['3.8', '3.9'] + python_version: ['3.9', '3.10'] pytorch_version: ['1.9.1', '1.10.1', '1.11.0', '1.12.1', '1.13.0', '2.0.1', '2.1.0'] platform: ['windows-latest', 'ubuntu-latest', 'macos-latest'] diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 4505d8df0..b6120a46e 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -15,7 +15,7 @@ jobs: matrix: - python_version: ['3.8', '3.9'] + python_version: ['3.9', '3.10'] pytorch_version: ['1.9.1', '1.10.1', '1.11.0', '1.12.1', '1.13.0', '2.0.1', '2.1.0'] platform: ['windows-latest', 'ubuntu-latest', 'macos-latest'] jit_status: ['jit_disabled', 'jit_enabled'] diff --git a/.github/workflows/reduced_develop_install.yml b/.github/workflows/reduced_develop_install.yml index b5ead15ee..6e38249ff 100644 --- a/.github/workflows/reduced_develop_install.yml +++ b/.github/workflows/reduced_develop_install.yml @@ -17,7 +17,7 @@ jobs: matrix: - python_version: ['3.8'] + python_version: ['3.9'] pytorch_version: ['1.9.1', '1.13.0', '2.1.0'] platform: ['ubuntu-latest'] diff --git a/.github/workflows/reduced_end_to_end.yml b/.github/workflows/reduced_end_to_end.yml index c52fb0ceb..b2aa87063 100644 --- a/.github/workflows/reduced_end_to_end.yml +++ b/.github/workflows/reduced_end_to_end.yml @@ -17,7 +17,7 @@ jobs: matrix: - python_version: ['3.8'] + python_version: ['3.9'] pytorch_version: ['1.9.1', '1.13.0', '2.1.0'] platform: ['ubuntu-latest'] diff --git a/.github/workflows/reduced_examples_llm_pytest.yml b/.github/workflows/reduced_examples_llm_pytest.yml index 44b0de612..d777b0102 100644 --- a/.github/workflows/reduced_examples_llm_pytest.yml +++ b/.github/workflows/reduced_examples_llm_pytest.yml @@ -17,7 +17,7 @@ jobs: matrix: - python_version: ['3.8'] + python_version: ['3.9'] pytorch_version: ['2.4.0'] platform: ['ubuntu-latest'] jit_status: ['jit_disabled'] diff --git a/.github/workflows/reduced_examples_pytest.yml b/.github/workflows/reduced_examples_pytest.yml index b4d42540c..14008dc68 100644 --- a/.github/workflows/reduced_examples_pytest.yml +++ b/.github/workflows/reduced_examples_pytest.yml @@ -17,7 +17,7 @@ jobs: matrix: - python_version: ['3.8'] + python_version: ['3.9'] pytorch_version: ['1.9.1', '1.13.0', '2.1.0'] platform: ['ubuntu-latest'] jit_status: ['jit_disabled'] diff --git a/.github/workflows/reduced_finn_integration.yml b/.github/workflows/reduced_finn_integration.yml index 342a01c34..b53bfb107 100644 --- a/.github/workflows/reduced_finn_integration.yml +++ b/.github/workflows/reduced_finn_integration.yml @@ -17,7 +17,7 @@ jobs: matrix: - python_version: ['3.8'] + python_version: ['3.9'] pytorch_version: ['1.9.1', '1.13.0', '2.1.0'] platform: ['ubuntu-latest'] diff --git a/.github/workflows/reduced_notebook.yml b/.github/workflows/reduced_notebook.yml index 5d2dc1b6f..f0a81fc4a 100644 --- a/.github/workflows/reduced_notebook.yml +++ b/.github/workflows/reduced_notebook.yml @@ -17,7 +17,7 @@ jobs: matrix: - python_version: ['3.8'] + python_version: ['3.9'] pytorch_version: ['1.9.1', '1.13.0', '2.1.0'] platform: ['ubuntu-latest'] diff --git a/.github/workflows/reduced_ort_integration.yml b/.github/workflows/reduced_ort_integration.yml index 9fcb678d2..5bae53b38 100644 --- a/.github/workflows/reduced_ort_integration.yml +++ b/.github/workflows/reduced_ort_integration.yml @@ -17,7 +17,7 @@ jobs: matrix: - python_version: ['3.8'] + python_version: ['3.9'] pytorch_version: ['1.9.1', '1.13.0', '2.1.0'] platform: ['ubuntu-latest'] diff --git a/.github/workflows/reduced_pytest.yml b/.github/workflows/reduced_pytest.yml index f3d0763e3..821654c52 100644 --- a/.github/workflows/reduced_pytest.yml +++ b/.github/workflows/reduced_pytest.yml @@ -17,7 +17,7 @@ jobs: matrix: - python_version: ['3.8'] + python_version: ['3.9'] pytorch_version: ['1.9.1', '1.13.0', '2.1.0'] platform: ['ubuntu-latest'] jit_status: ['jit_disabled']