File tree Expand file tree Collapse file tree 4 files changed +13
-7
lines changed Expand file tree Collapse file tree 4 files changed +13
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## [ 0.5.0] - 2025-06-24
4
+
5
+ - Support numpy v2
6
+ - Refreshed wheel builds
7
+
3
8
## [ 0.4.3] - 2022-11-18
4
9
5
10
- PEP 518-compliant with ` pyproject.toml ` and ` build-system `
Original file line number Diff line number Diff line change 1
1
"""Top-level package for quantized_mesh_encoder."""
2
2
3
3
__author__ = """Kyle Barron"""
4
-
5
- __version__ = '0.4.3'
4
+
5
+ __version__ = "0.5.0"
6
6
7
7
from .constants import WGS84
8
8
from .ellipsoid import Ellipsoid
Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 0.4.3
2
+ current_version = 0.5.0
3
3
commit = True
4
4
tag = True
5
5
Original file line number Diff line number Diff line change 1
1
"""Setup for quantized-mesh-encoder."""
2
+
2
3
from pathlib import Path
3
4
4
5
import numpy as np
19
20
20
21
21
22
# 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" )))
24
25
25
26
26
27
setup (
27
28
name = "quantized-mesh-encoder" ,
28
- version = "0.4.3 " ,
29
- python_requires = ">=3.6 " ,
29
+ version = "0.5.0 " ,
30
+ python_requires = ">=3.9 " ,
30
31
description = "A fast Python Quantized Mesh encoder" ,
31
32
long_description = readme ,
32
33
long_description_content_type = "text/markdown" ,
You can’t perform that action at this time.
0 commit comments