Skip to content

Commit a40d93b

Browse files
authored
chore: Prepare 0.5 (#79)
1 parent f45b619 commit a40d93b

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## [0.5.0] - 2025-06-24
4+
5+
- Support numpy v2
6+
- Refreshed wheel builds
7+
38
## [0.4.3] - 2022-11-18
49

510
- PEP 518-compliant with `pyproject.toml` and `build-system`

quantized_mesh_encoder/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
"""Top-level package for quantized_mesh_encoder."""
22

33
__author__ = """Kyle Barron"""
4-
__email__ = '[email protected]'
5-
__version__ = '0.4.3'
4+
__email__ = "[email protected]"
5+
__version__ = "0.5.0"
66

77
from .constants import WGS84
88
from .ellipsoid import Ellipsoid

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.4.3
2+
current_version = 0.5.0
33
commit = True
44
tag = True
55

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Setup for quantized-mesh-encoder."""
2+
23
from pathlib import Path
34

45
import numpy as np
@@ -19,14 +20,14 @@
1920

2021

2122
# Ref https://suzyahyah.github.io/cython/programming/2018/12/01/Gotchas-in-Cython.html
22-
def find_pyx(path='.'):
23-
return list(map(str, Path(path).glob('**/*.pyx')))
23+
def find_pyx(path="."):
24+
return list(map(str, Path(path).glob("**/*.pyx")))
2425

2526

2627
setup(
2728
name="quantized-mesh-encoder",
28-
version="0.4.3",
29-
python_requires=">=3.6",
29+
version="0.5.0",
30+
python_requires=">=3.9",
3031
description="A fast Python Quantized Mesh encoder",
3132
long_description=readme,
3233
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)