Skip to content

Commit 0716653

Browse files
committed
remove tests for python 3.6 and 3.7 to allow for compatibility with xgboost version 1.7.3
1 parent 19b6709 commit 0716653

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

.github/workflows/build-test-deploy.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,9 @@ jobs:
2121
LANG: en_US.UTF-8
2222
strategy:
2323
matrix:
24-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
24+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
2525
os-version: ['ubuntu-20.04', 'windows-latest', 'macos-latest']
2626
exclude:
27-
- python-version: '3.6'
28-
os-version: 'macos-latest'
29-
- python-version: '3.7'
30-
os-version: 'macos-latest'
3127
# Pinned Ubuntu version to 20.04 since no Python 3.6 builds available on ubuntu-latest (22.04) as of 2022-12-7.
3228
# os-version: [ubuntu-latest, windows-latest, macos-latest]
3329

tox.ini

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,14 @@
1212

1313

1414
[tox]
15-
envlist = py{36,37,38,39,310,311,312}-tests-{clean,unit,integration}
15+
envlist = py{38,39,310,311,312}-tests-{clean,unit,integration}
1616

1717
# Allow execution even if all Python versions are not present
1818
skip_missing_interpreters = {env:TOX_SKIP_MISSING_INTERPRETERS:True}
1919

2020
# Required by tox-gh-actions GH action. Maps GH Python runtime to tox envlist.
2121
[gh-actions]
2222
python =
23-
3.6: py36
24-
3.7: py37
2523
3.8: py38
2624
3.9: py39
2725
3.10: py310
@@ -33,8 +31,6 @@ skip_install =
3331
clean: true
3432

3533
basepython =
36-
py36: python3.6
37-
py37: python3.7
3834
py38: python3.8
3935
py39: python3.9
4036
py310: python3.10

0 commit comments

Comments
 (0)