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 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 `
Original file line number Diff line number Diff line change 11"""Top-level package for quantized_mesh_encoder."""
22
33__author__ = """Kyle Barron"""
4- __email__ = ' kylebarron2@gmail.com'
5- __version__ = '0.4.3'
4+ __email__ = " kylebarron2@gmail.com"
5+ __version__ = "0.5.0"
66
77from .constants import WGS84
88from .ellipsoid import Ellipsoid
Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 0.4.3
2+ current_version = 0.5.0
33commit = True
44tag = True
55
Original file line number Diff line number Diff line change 11"""Setup for quantized-mesh-encoder."""
2+
23from pathlib import Path
34
45import numpy as np
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
2627setup (
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" ,
You can’t perform that action at this time.
0 commit comments