Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
build*/**/bin
build*/**/fortran

# build wheels only for cpython versions 3.8-3.12 on linux and windows 64-bits
# build wheels for cpython versions 3.8+ on linux and windows 64-bits
python_build:
name: Build ittapi wheels
runs-on: ${{ matrix.os }}
Expand All @@ -52,14 +52,14 @@ jobs:
matrix:
include:
- os: ubuntu-latest
cibw_skip_args: "*_i686 *-musllinux_* cp313-*"
cibw_skip_args: "*_i686 *-musllinux_* cp*t-*"
- os: windows-latest
cibw_skip_args: "*-win32 *_i686 cp313-*"
cibw_skip_args: "*-win32 *_i686 cp*t-*"
steps:
- name: Checkout sources
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Install cibuildwheels
run: python -m pip install cibuildwheel==2.20.0
run: python -m pip install cibuildwheel==3.3.1
- name: Build ittapi python wheels
run: python -m cibuildwheel python --output-dir python_dist
env:
Expand Down
4 changes: 2 additions & 2 deletions python/ittapi.native/ittapi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ static int exec_ittapi_module(PyObject* module)
PyModule_AddFunctions(module, ittapi_functions);

PyModule_AddStringConstant(module, "__author__", "Egor Suldin");
PyModule_AddStringConstant(module, "__version__", "1.2.0");
PyModule_AddIntConstant(module, "year", 2024);
PyModule_AddStringConstant(module, "__version__", "1.2.1");
PyModule_AddIntConstant(module, "year", 2026);

return 0;
}
Expand Down
4 changes: 3 additions & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ittapi"
version = "1.2.0"
version = "1.2.1"
authors = [
{ name="Egor Suldin"},
]
Expand All @@ -16,6 +16,8 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]

[project.urls]
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def build_extension(self, ext) -> None:


setup(name='ittapi',
version='1.2.0',
version='1.2.1',
description='ITT API bindings for Python',
packages=['ittapi', 'ittapi/compat'],
ext_modules=[ittapi_native],
Expand Down
Loading