Skip to content

Commit aa08f8e

Browse files
authored
IGNITE-28761 Fix gh actions (#67)
1 parent ff11e0e commit aa08f8e

3 files changed

Lines changed: 5 additions & 7 deletions

File tree

.github/workflows/pr_check.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222
- 'pyignite-*'
2323

2424
env:
25-
IGNITE_VERSION: 2.15.0
25+
IGNITE_VERSION: 2.18.0
2626
IGNITE_HOME: /opt/ignite
2727

2828
jobs:
@@ -32,7 +32,6 @@ jobs:
3232
fail-fast: false
3333
matrix:
3434
cfg:
35-
- { python: "3.7", toxenv: "py37" }
3635
- { python: "3.8", toxenv: "py38" }
3736
- { python: "3.9", toxenv: "py39" }
3837
- { python: "3.10", toxenv: "py310" }
@@ -47,7 +46,7 @@ jobs:
4746
python-version: ${{ matrix.cfg.python}}
4847
- name: Install Apache Ignite
4948
run: |
50-
curl -L https://apache-mirror.rbc.ru/pub/apache/ignite/${IGNITE_VERSION}/apache-ignite-slim-${IGNITE_VERSION}-bin.zip > ignite.zip
49+
curl -L https://archive.apache.org/dist/ignite/${IGNITE_VERSION}/apache-ignite-slim-${IGNITE_VERSION}-bin.zip > ignite.zip
5150
unzip ignite.zip -d /opt
5251
mv /opt/apache-ignite-slim-${IGNITE_VERSION}-bin /opt/ignite
5352
mv /opt/ignite/libs/optional/ignite-log4j2 /opt/ignite/libs/

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def run_setup(with_binary=True):
9292
setuptools.setup(
9393
name='pyignite',
9494
version=version,
95-
python_requires='>=3.7',
95+
python_requires='>=3.8',
9696
author='The Apache Software Foundation',
9797
author_email='dev@ignite.apache.org',
9898
description='Apache Ignite binary client Python API',
@@ -106,7 +106,6 @@ def run_setup(with_binary=True):
106106
classifiers=[
107107
'Programming Language :: Python',
108108
'Programming Language :: Python :: 3',
109-
'Programming Language :: Python :: 3.7',
110109
'Programming Language :: Python :: 3.8',
111110
'Programming Language :: Python :: 3.9',
112111
'Programming Language :: Python :: 3.10',

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
[tox]
1717
skipsdist = True
18-
envlist = codestyle,py{37,38,39,310,311}
18+
envlist = codestyle,py{38,39,310,311}
1919

2020
[pytest]
2121
log_format = %(asctime)s %(name)s %(levelname)s %(message)s
@@ -45,6 +45,6 @@ usedevelop = True
4545
commands =
4646
pytest {env:PYTESTARGS:} {posargs} --force-cext --examples
4747

48-
[testenv:py{37,38,39,310,311}-jenkins]
48+
[testenv:py{38,39,310,311}-jenkins]
4949
setenv:
5050
PYTESTARGS = --junitxml=junit-{envname}.xml

0 commit comments

Comments
 (0)