Skip to content

Commit f71a121

Browse files
committed
Revert "Removed Python 3.8 tests"
This reverts commit 913abde.
1 parent 2e2c99a commit f71a121

7 files changed

+7
-6
lines changed

.github/workflows/azureml-cpu-nightly.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
strategy:
6868
max-parallel: 50 # Usage limits: https://docs.github.com/en/actions/learn-github-actions/usage-limits-billing-and-administration
6969
matrix:
70-
python-version: ["3.9", "3.10", "3.11", "3.12"]
70+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
7171
test-group: ${{ fromJSON(needs.get-test-groups.outputs.test_groups) }}
7272
steps:
7373
- name: Check out repository code

.github/workflows/azureml-gpu-nightly.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
strategy:
6868
max-parallel: 50 # Usage limits: https://docs.github.com/en/actions/learn-github-actions/usage-limits-billing-and-administration
6969
matrix:
70-
python-version: ["3.9", "3.10", "3.11", "3.12"]
70+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
7171
test-group: ${{ fromJSON(needs.get-test-groups.outputs.test_groups) }}
7272
steps:
7373
- name: Check out repository code

.github/workflows/azureml-spark-nightly.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
strategy:
6767
max-parallel: 50 # Usage limits: https://docs.github.com/en/actions/learn-github-actions/usage-limits-billing-and-administration
6868
matrix:
69-
python-version: ["3.9", "3.10", "3.11", "3.12"]
69+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
7070
test-group: ${{ fromJSON(needs.get-test-groups.outputs.test_groups) }}
7171
steps:
7272
- name: Check out repository code

.github/workflows/azureml-unit-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
strategy:
5757
max-parallel: 50 # Usage limits: https://docs.github.com/en/actions/learn-github-actions/usage-limits-billing-and-administration
5858
matrix:
59-
python-version: ["3.9", "3.10", "3.11", "3.12"]
59+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
6060
test-group: ${{ fromJSON(needs.get-test-groups.outputs.test_groups) }}
6161
steps:
6262
- name: Check out repository code

.github/workflows/sarplus.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
runs-on: ubuntu-22.04
4040
strategy:
4141
matrix:
42-
python-version: ["3.9", "3.10", "3.11"]
42+
python-version: ["3.8", "3.9", "3.10", "3.11"]
4343
steps:
4444
- uses: actions/checkout@v4
4545

recommenders/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Some dependencies require compilation during pip installation. On Linux this can
1414
```bash
1515
sudo apt-get install -y build-essential libpython<version>
1616
```
17-
where `<version>` should be the Python version (e.g. `3.12`).
17+
where `<version>` should be the Python version (e.g. `3.8`).
1818

1919
On Windows you will need [Microsoft C++ Build Tools](https://visualstudio.microsoft.com/visual-cpp-build-tools/)
2020

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@
112112
"Topic :: Scientific/Engineering :: Artificial Intelligence",
113113
"Topic :: Software Development :: Libraries :: Python Modules",
114114
"License :: OSI Approved :: MIT License",
115+
"Programming Language :: Python :: 3.8",
115116
"Programming Language :: Python :: 3.9",
116117
"Programming Language :: Python :: 3.10",
117118
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)