Skip to content

Commit 2c0cea5

Browse files
committed
Change linux platform tag to manylinux1_x86_64 (PEP 513), bump version
1 parent acfa39d commit 2c0cea5

5 files changed

Lines changed: 6 additions & 5 deletions

File tree

docs/uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lang/python/hatch_build.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ def get_platform_tag(self):
6363
platform_tag = get_platform().replace("-", "_").replace(".", "_")
6464

6565
if platform.system() == "Linux":
66+
platform_tag = platform_tag.replace("linux", "manylinux1")
6667
dummy_wheel_path = Path(gettempdir()) / "dummy.whl"
6768
with ZipFile(dummy_wheel_path, "w", strict_timestamps=False) as zip_file:
6869
records_str = ""

lang/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "mvsr"
33
description = "Library for Fast Segmented Regression"
4-
version = "0.1.0"
4+
version = "0.1.1"
55
requires-python = ">=3.10"
66
readme = "README.md"
77
dependencies = ["numpy>=1.21"]

lang/python/uv.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mvsr/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.15)
33
project(mvsr
44
DESCRIPTION "Library for Fast Segmented Regression"
55
HOMEPAGE_URL https://github.com/Loesgar/mvsr
6-
VERSION 0.1.0
6+
VERSION 0.1.1
77
)
88

99
set(CMAKE_CXX_STANDARD 20)

0 commit comments

Comments
 (0)