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

zstan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite-python-thin-client.git


The following commit(s) were added to refs/heads/master by this push:
     new aa08f8e  IGNITE-28761 Fix gh actions (#67)
aa08f8e is described below

commit aa08f8e95134cb37e220638ca473e4e672227247
Author: Aleksandr Nikolaev <[email protected]>
AuthorDate: Wed Jun 10 19:38:57 2026 +0300

    IGNITE-28761 Fix gh actions (#67)
---
 .github/workflows/pr_check.yml | 5 ++---
 setup.py                       | 3 +--
 tox.ini                        | 4 ++--
 3 files changed, 5 insertions(+), 7 deletions(-)

diff --git a/.github/workflows/pr_check.yml b/.github/workflows/pr_check.yml
index 43ff21a..f9f5f98 100644
--- a/.github/workflows/pr_check.yml
+++ b/.github/workflows/pr_check.yml
@@ -22,7 +22,7 @@ on:
       - 'pyignite-*'
 
 env:
-  IGNITE_VERSION: 2.15.0
+  IGNITE_VERSION: 2.18.0
   IGNITE_HOME: /opt/ignite
 
 jobs:
@@ -32,7 +32,6 @@ jobs:
       fail-fast: false
       matrix:
         cfg:
-          - { python: "3.7", toxenv: "py37" }
           - { python: "3.8", toxenv: "py38" }
           - { python: "3.9", toxenv: "py39" }
           - { python: "3.10", toxenv: "py310" }
@@ -47,7 +46,7 @@ jobs:
           python-version: ${{ matrix.cfg.python}}
       - name: Install Apache Ignite
         run: |
-          curl -L 
https://apache-mirror.rbc.ru/pub/apache/ignite/${IGNITE_VERSION}/apache-ignite-slim-${IGNITE_VERSION}-bin.zip
 > ignite.zip
+          curl -L 
https://archive.apache.org/dist/ignite/${IGNITE_VERSION}/apache-ignite-slim-${IGNITE_VERSION}-bin.zip
 > ignite.zip
           unzip ignite.zip -d /opt
           mv /opt/apache-ignite-slim-${IGNITE_VERSION}-bin /opt/ignite
           mv /opt/ignite/libs/optional/ignite-log4j2 /opt/ignite/libs/
diff --git a/setup.py b/setup.py
index e92d7b9..6ef853f 100644
--- a/setup.py
+++ b/setup.py
@@ -92,7 +92,7 @@ def run_setup(with_binary=True):
     setuptools.setup(
         name='pyignite',
         version=version,
-        python_requires='>=3.7',
+        python_requires='>=3.8',
         author='The Apache Software Foundation',
         author_email='[email protected]',
         description='Apache Ignite binary client Python API',
@@ -106,7 +106,6 @@ def run_setup(with_binary=True):
         classifiers=[
             'Programming Language :: Python',
             'Programming Language :: Python :: 3',
-            'Programming Language :: Python :: 3.7',
             'Programming Language :: Python :: 3.8',
             'Programming Language :: Python :: 3.9',
             'Programming Language :: Python :: 3.10',
diff --git a/tox.ini b/tox.ini
index 2fe65b4..ef8fe63 100644
--- a/tox.ini
+++ b/tox.ini
@@ -15,7 +15,7 @@
 
 [tox]
 skipsdist = True
-envlist = codestyle,py{37,38,39,310,311}
+envlist = codestyle,py{38,39,310,311}
 
 [pytest]
 log_format = %(asctime)s %(name)s %(levelname)s %(message)s
@@ -45,6 +45,6 @@ usedevelop = True
 commands =
     pytest {env:PYTESTARGS:} {posargs} --force-cext --examples
 
-[testenv:py{37,38,39,310,311}-jenkins]
+[testenv:py{38,39,310,311}-jenkins]
 setenv:
     PYTESTARGS = --junitxml=junit-{envname}.xml

Reply via email to