Skip to content

Commit 31294bf

Browse files
committed
updated versions
1 parent 9a907ab commit 31294bf

File tree

6 files changed

+8
-9
lines changed

6 files changed

+8
-9
lines changed

requirements-build-3_13.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
numpy==2.1.3
1+
numpy==2.2.5
22
setuptools==70.*

requirements-dev-3_11.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
numpy==1.23.5
1+
numpy==1.24.3
22
pytest==7.1.2
33
pylint==2.7.4
44
invoke==2.2.0

requirements-dev-3_12.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
numpy==1.26.2
1+
numpy==1.24.3
22
pytest==7.1.2
33
invoke==2.2.0
44
hypothesis==6.10.1

requirements-dev-3_13.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
numpy==2.1.3
1+
numpy==2.2.5
22
pytest==8.3.3
33
invoke==2.2.0
44
hypothesis==6.10.1

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
numpy>=1.19.5
1+
numpy>=1.24.3

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@
33
import typing as tp
44
from setuptools import Extension # type: ignore
55
from setuptools import setup
6-
from pathlib import Path
76

8-
AK_VERSION = '0.10.0'
7+
AK_VERSION = '1.0.0'
98

109
def get_long_description() -> str:
1110
return '''The ArrayKit library provides utilities for creating and transforming NumPy arrays, implementing performance-critical StaticFrame operations as Python C extensions.
@@ -53,8 +52,8 @@ def get_ext_dir(*components: tp.Iterable[str]) -> tp.Sequence[str]:
5352
version=AK_VERSION,
5453
description='Array utilities for StaticFrame',
5554
long_description=get_long_description(),
56-
python_requires='>=3.9',
57-
install_requires=['numpy>=1.19.5'],
55+
python_requires='>=3.10',
56+
install_requires=['numpy>=1.24.3'],
5857
url='https://github.com/static-frame/arraykit',
5958
author='Christopher Ariza, Brandt Bucher, Charles Burkland',
6059
license='MIT',

0 commit comments

Comments
 (0)