This is an automated email from the ASF dual-hosted git repository.

ivandasch pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new 385a81023af IGNITE-23460 [ducktests] Use python 3.8 and 3.9 in the 
commit-check github action (#11785)
385a81023af is described below

commit 385a81023af6424106e17feec58a44fbcbc44bcf
Author: Sergey Korotkov <[email protected]>
AuthorDate: Sat Dec 28 17:33:50 2024 +0700

    IGNITE-23460 [ducktests] Use python 3.8 and 3.9 in the commit-check github 
action (#11785)
---
 .github/workflows/commit-check.yml |  4 ++--
 modules/ducktests/tests/tox.ini    | 13 +++++--------
 2 files changed, 7 insertions(+), 10 deletions(-)

diff --git a/.github/workflows/commit-check.yml 
b/.github/workflows/commit-check.yml
index bab2bb03d15..906b612ce5f 100644
--- a/.github/workflows/commit-check.yml
+++ b/.github/workflows/commit-check.yml
@@ -95,9 +95,9 @@ jobs:
       fail-fast: false
       matrix:
         cfg:
-          - { python: "3.7", toxenv: "py37" }
           - { python: "3.8", toxenv: "py38" }
-          - { python: "3.8", toxenv: "codestyle" }
+          - { python: "3.9", toxenv: "py39" }
+          - { python: "3.9", toxenv: "codestyle" }
     steps:
       - uses: actions/checkout@v4
         with:
diff --git a/modules/ducktests/tests/tox.ini b/modules/ducktests/tests/tox.ini
index d7e56a2fb01..c8f996c284c 100644
--- a/modules/ducktests/tests/tox.ini
+++ b/modules/ducktests/tests/tox.ini
@@ -13,7 +13,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 [tox]
-envlist = codestyle, py37, py38
+envlist = codestyle, py38, py39
 skipsdist = True
 
 [testenv]
@@ -25,19 +25,16 @@ commands =
     pytest {env:PYTESTARGS:} {posargs}
 
 [testenv:codestyle]
-basepython = python3.8
+basepython = python3.9
 commands =
     flake8
 
-[testenv:py36]
-envdir = {homedir}/.virtualenvs/ignite-ducktests-py36
-
-[testenv:py37]
-envdir = {homedir}/.virtualenvs/ignite-ducktests-py37
-
 [testenv:py38]
 envdir = {homedir}/.virtualenvs/ignite-ducktests-py38
 
+[testenv:py39]
+envdir = {homedir}/.virtualenvs/ignite-ducktests-py39
+
 [BASIC]
 min-public-methods=0
 good-names=i, j, k, x, y, ex, pk, tx

Reply via email to