We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4bf2aad + 085641b commit b995588Copy full SHA for b995588
.github/workflows/ci.yml
@@ -31,7 +31,7 @@ jobs:
31
matrix:
32
os: [macos-12, ubuntu-22.04, windows-2022]
33
major: [3]
34
- minor: [7, 8]
+ minor: [8]
35
runs-on: ${{ matrix.os }}
36
steps:
37
- uses: actions/checkout@master
README.rst
@@ -29,14 +29,21 @@ Dependencies
29
30
ArrayKit requires the following:
-- Python >= 3.7
-- NumPy >= 1.18.5
+- Python>=3.8
+- numpy>=1.19.5
What is New in ArrayKit
38
-------------------------
39
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
47
0.4.9
48
............
49
requirements-build-backward.txt
@@ -1 +1 @@
1
-numpy==1.18.5
+numpy==1.19.5
requirements-test-backward.txt
@@ -1,4 +1,4 @@
2
pytest==7.1.2
3
pylint==2.7.4
4
invoke==1.4.0
requirements.txt
-numpy>=1.18.5
+numpy>=1.19.5
setup.py
@@ -45,8 +45,8 @@ def get_ext_dir(*components: tp.Iterable[str]) -> tp.Sequence[str]:
version=AK_VERSION,
description='Array utilities for StaticFrame',
long_description=get_long_description(),
- python_requires='>3.7.0',
- install_requires=['numpy>=1.18.5'],
+ python_requires='>=3.8',
+ install_requires=['numpy>=1.19.5'],
50
url='https://github.com/static-frame/arraykit',
51
author='Christopher Ariza, Brandt Bucher, Charles Burkland',
52
license='MIT',
@@ -59,7 +59,6 @@ def get_ext_dir(*components: tp.Iterable[str]) -> tp.Sequence[str]:
59
'Operating System :: MacOS :: MacOS X',
60
'Operating System :: Microsoft :: Windows',
61
'Operating System :: POSIX',
62
- 'Programming Language :: Python :: 3.7',
63
'Programming Language :: Python :: 3.8',
64
'Programming Language :: Python :: 3.9',
65
'Programming Language :: Python :: 3.10',
0 commit comments