Skip to content

Commit e299ff3

Browse files
committed
IGNITE-18006 wip.
1 parent ef1d248 commit e299ff3

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ addons:
2323

2424
env:
2525
global:
26-
- IGNITE_VERSION=2.13.0
26+
- IGNITE_VERSION=2.14.0
2727
- IGNITE_HOME=/opt/ignite
2828

2929
before_install:
@@ -49,6 +49,9 @@ jobs:
4949
- python: '3.10'
5050
arch: amd64
5151
env: TOXENV=py310
52+
- python: '3.11'
53+
arch: amd64
54+
env: TOXENV=py311
5255

5356
install: pip install tox
5457
script: tox

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ def run_setup(with_binary=True):
110110
'Programming Language :: Python :: 3.8',
111111
'Programming Language :: Python :: 3.9',
112112
'Programming Language :: Python :: 3.10',
113+
'Programming Language :: Python :: 3.11',
113114
'Programming Language :: Python :: 3 :: Only',
114115
'Intended Audience :: Developers',
115116
'Topic :: Database :: Front-Ends',

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}
18+
envlist = codestyle,py{37,38,39,310,311}
1919

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

46-
[testenv:py{36,37,38,39}-jenkins]
46+
[testenv:py{37,38,39,310,311}-jenkins]
4747
setenv:
4848
PYTESTARGS = --junitxml=junit-{envname}.xml

0 commit comments

Comments
 (0)