Skip to content

Commit 73be5fd

Browse files
committed
Merge branch 'master' into 132/bi-register
2 parents 5d53a82 + b995588 commit 73be5fd

File tree

6 files changed

+15
-9
lines changed

6 files changed

+15
-9
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
matrix:
3232
os: [macos-12, ubuntu-22.04, windows-2022]
3333
major: [3]
34-
minor: [7, 8]
34+
minor: [8]
3535
runs-on: ${{ matrix.os }}
3636
steps:
3737
- uses: actions/checkout@master

README.rst

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,21 @@ Dependencies
2929

3030
ArrayKit requires the following:
3131

32-
- Python >= 3.7
33-
- NumPy >= 1.18.5
32+
- Python>=3.8
33+
- numpy>=1.19.5
3434

3535

3636

3737
What is New in ArrayKit
3838
-------------------------
3939

40+
0.4.10-dev
41+
............
42+
43+
Minimum supported Python set to 3.8.
44+
Minimum supported NumPy set to 1.19.5.
45+
46+
4047
0.4.9
4148
............
4249

requirements-build-backward.txt

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

requirements-test-backward.txt

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

requirements.txt

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

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ def get_ext_dir(*components: tp.Iterable[str]) -> tp.Sequence[str]:
4545
version=AK_VERSION,
4646
description='Array utilities for StaticFrame',
4747
long_description=get_long_description(),
48-
python_requires='>3.7.0',
49-
install_requires=['numpy>=1.18.5'],
48+
python_requires='>=3.8',
49+
install_requires=['numpy>=1.19.5'],
5050
url='https://github.com/static-frame/arraykit',
5151
author='Christopher Ariza, Brandt Bucher, Charles Burkland',
5252
license='MIT',
@@ -59,7 +59,6 @@ def get_ext_dir(*components: tp.Iterable[str]) -> tp.Sequence[str]:
5959
'Operating System :: MacOS :: MacOS X',
6060
'Operating System :: Microsoft :: Windows',
6161
'Operating System :: POSIX',
62-
'Programming Language :: Python :: 3.7',
6362
'Programming Language :: Python :: 3.8',
6463
'Programming Language :: Python :: 3.9',
6564
'Programming Language :: Python :: 3.10',

0 commit comments

Comments
 (0)