Skip to content

Commit 2f3202b

Browse files
committed
IGNITE-27158 Update supported versions everywhere
1 parent 97c7180 commit 2f3202b

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

modules/platforms/python/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Apache Ignite 3 DB API Driver.
33

44
## Prerequisites
55

6-
- Python 3.9 or above (3.9, 3.10, 3.11, 3.12 and 3.13 are tested),
6+
- Python 3.10 or above (3.10, 3.11, 3.12, 3.13 and 3.14 are tested),
77
- Access to Ignite 3 node, local or remote.
88

99
## Installation
@@ -47,7 +47,7 @@ Linux building requirements:
4747
- CMake version >=3.18;
4848
- OpenSSL (dev version of the package);
4949
- Docker to build wheels;
50-
- Supported versions of Python (3.9, 3.10, 3.11, 3.12 and 3.13).
50+
- Supported versions of Python (3.10, 3.11, 3.12, 3.13 and 3.14).
5151
You can disable some of these versions, but you'd need to edit the script for that.
5252

5353
For building universal `wheels` (binary packages) for Linux, just invoke script `./scripts/create_distr.sh`.
@@ -56,7 +56,7 @@ Windows building requirements:
5656
- MSVC 14.x, and it should be in path;
5757
- CMake version >=3.18;
5858
- OpenSSL (headers are required for the build);
59-
- Supported versions of Python (3.9, 3.10, 3.11, 3.12 and 3.13).
59+
- Supported versions of Python (3.10, 3.11, 3.12, 3.13 and 3.14).
6060
You can disable some of these versions, but you'd need to edit the script for that.
6161

6262
For building `wheels` for Windows, invoke script `.\scripts\BuildWheels.ps1` using PowerShell.
@@ -65,7 +65,7 @@ The script only works with Python distributions installed in a standard path, wh
6565

6666
Ready wheels will be located in `distr` directory.
6767

68-
### Updating from older version
68+
### Updating from an older version
6969

7070
To upgrade an existing package, use the following command:
7171
```

modules/platforms/python/scripts/BuildWheels.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
.PARAMETER PyVers
2828
Python versions to use, through coma.
2929
.EXAMPLE
30-
PS> .\scripts\BuildWheels.ps1 -PyVers "3.9,3.10,3.11,3.12,3.13"
31-
Build wheels for Python versions 3.9-3.13
30+
PS> .\scripts\BuildWheels.ps1 -PyVers "3.10,3.11,3.12,3.13,3.14"
31+
Build wheels for Python versions 3.10-3.14
3232
.EXAMPLE
3333
PS> .\scripts\BuildWheels.ps1 -PyVers 3.11
3434
Build wheels for Python versions 3.11 only

modules/platforms/python/scripts/build_wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ set -e -u -x
1919
PACKAGE_NAME="pyignite_dbapi"
2020
PY_VERS=$1
2121

22-
# Converting input from '3.9,3.10...' to '39 310...'
22+
# Converting input from '3.10, 3.11...' to '310 311...'
2323
PREPARED_VERS=$(echo $PY_VERS | sed -r 's/\.//g' | tr ',' ' ')
2424

2525

modules/platforms/python/scripts/create_distr.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616

17-
PY_VERS="3.9,3.10,3.11,3.12,3.13"
17+
PY_VERS="3.10,3.11,3.12,3.13,3.14"
1818
PACKAGE_NAME="pyignite_dbapi"
1919
SRC_DIR="$(pwd)"
2020
DISTR_DIR="$SRC_DIR/distr/"

modules/platforms/python/scripts/create_sdist.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ set -e -u -x
1919
PACKAGE_NAME="pyignite_dbapi"
2020
PY_VERS=$1
2121

22-
# Converting input from '3.9,3.10...' to '39 310...'
22+
# Converting input from '3.10,3.11...' to '310 311...'
2323
PREPARED_VERS=$(echo $PY_VERS | sed -r 's/\.//g' | tr ',' ' ')
2424

2525
# Copying cpp directory.

modules/platforms/python/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def run_setup():
130130
setuptools.setup(
131131
name=PACKAGE_NAME,
132132
version=version,
133-
python_requires='>=3.8',
133+
python_requires='>=3.10',
134134
author='The Apache Software Foundation',
135135
author_email='[email protected]',
136136
description='Apache Ignite 3 DB API Driver',
@@ -148,11 +148,11 @@ def run_setup():
148148
'Programming Language :: C++',
149149
'Programming Language :: Python',
150150
'Programming Language :: Python :: 3',
151-
'Programming Language :: Python :: 3.9',
152151
'Programming Language :: Python :: 3.10',
153152
'Programming Language :: Python :: 3.11',
154153
'Programming Language :: Python :: 3.12',
155154
'Programming Language :: Python :: 3.13',
155+
'Programming Language :: Python :: 3.14',
156156
'Programming Language :: Python :: 3 :: Only',
157157
'Intended Audience :: Developers',
158158
'Topic :: Database :: Front-Ends',

modules/platforms/python/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
[tox]
1717
skipsdist = True
18-
envlist = codestyle,py{39,310,311,312,313}
18+
envlist = codestyle,py31{0,1,2,3,4}
1919

2020
[testenv]
2121
passenv = TEAMCITY_VERSION IGNITE_HOME

0 commit comments

Comments
 (0)