Skip to content

Commit a1238ad

Browse files
committed
heyoka.py 6.1.1.
1 parent 5d13981 commit a1238ad

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ if(NOT CMAKE_BUILD_TYPE)
1111
FORCE)
1212
endif()
1313

14-
project(heyoka.py VERSION 6.1.0 LANGUAGES CXX C)
14+
project(heyoka.py VERSION 6.1.1 LANGUAGES CXX C)
1515

1616
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" "${CMAKE_CURRENT_SOURCE_DIR}/cmake/yacma")
1717

doc/changelog.rst

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
Changelog
44
=========
55

6+
6.1.1 (2024-10-10)
7+
------------------
8+
9+
Fix
10+
~~~
11+
12+
- Fix upload of binary wheels.
13+
614
6.1.0 (2024-10-10)
715
------------------
816

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requires = ['scikit-build-core', 'numpy >= 1.22, < 2']
44

55
[project]
66
name = 'heyoka'
7-
version = '6.1.0'
7+
version = '6.1.1'
88
description = "Python library for ODE integration via Taylor's method and LLVM"
99
readme = 'README.md'
1010
requires-python = '>=3.5'

tools/gha_manylinux.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ cd /
9090
# Upload to PyPI.
9191
if [[ "${HEYOKA_PY_RELEASE_BUILD}" == "yes" ]]; then
9292
/opt/python/${PYTHON_DIR}/bin/pip install twine
93-
/opt/python/${PYTHON_DIR}/bin/twine upload -u __token__ ${GITHUB_WORKSPACE}/build/wheel/dist2/heyoka*
93+
/opt/python/${PYTHON_DIR}/bin/twine upload -u __token__ ${GITHUB_WORKSPACE}/repaired_wheel/heyoka*
9494
fi
9595

9696
set +e

0 commit comments

Comments
 (0)