Skip to content

Commit 49b3ff6

Browse files
committed
[numpy] build with oldest-supported-numpy
1 parent f487b9a commit 49b3ff6

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
- Copyright: (C) Qianqian Fang (2020-2026) <q.fang at neu.edu>
66
- Copyright: (C) Iotic Labs Ltd. (2016-2019) <vilnis.termanis at iotic-labs.com>
77
- License: Apache License, Version 2.0
8-
- Version: 0.6.5
8+
- Version: 0.6.6
99
- URL: https://pypi.org/project/bjdata/
1010
- Github: https://github.com/NeuroJSON/pybj
1111
- BJData Spec Version: [Draft 4](https://neurojson.org/bjdata/draft4)

bjdata/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
from .encoder import EncoderException
4141
from .decoder import DecoderException
4242

43-
__version__ = "0.6.5"
43+
__version__ = "0.6.6"
4444

4545
__all__ = (
4646
"EXTENSION_ENABLED",

pyproject.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22
requires = [
33
"setuptools>=42",
44
"wheel",
5-
"numpy>=2.0.0rc1; python_version>='3.9'",
6-
"numpy>=1.8.0; python_version<'3.9'"
5+
"oldest-supported-numpy"
76
]
87
build-backend = "setuptools.build_meta"
8+
9+
[project]
10+
name = "bjdata"
11+
requires-python = ">=3.7"
12+
dependencies = ["numpy>=1.19"]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def build_extension(self, ext):
8585

8686
setup(
8787
name="bjdata",
88-
version="0.6.5",
88+
version="0.6.6",
8989
description="Binary JData and UBJSON encoder/decoder",
9090
long_description=load_description("README.md"),
9191
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)