Skip to content
This repository was archived by the owner on Jun 27, 2025. It is now read-only.

Commit 60bd175

Browse files
committed
removed support for py 3.8
1 parent 26fd5f7 commit 60bd175

File tree

5 files changed

+4
-12
lines changed

5 files changed

+4
-12
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ Dependencies
2828

2929
ArrayMap requires the following:
3030

31-
- Python >= 3.8
32-
- NumPy >= 1.18.5
31+
- Python >= 3.9
32+
- NumPy >= 1.19.5
3333

3434

3535

requirements-build-3_08.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

requirements-dev-3_08.txt

Lines changed: 0 additions & 6 deletions
This file was deleted.

requirements-dev-3_11.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ hypothesis==6.70.0
33
invoke==2.2.0
44
pytest==7.1.2
55
tzdata==2022.1
6-
numpy==1.23.5
6+
numpy==1.23.5

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def get_ext_dir(*components: tp.Iterable[str]) -> tp.Sequence[str]:
3333
version=AM_VERSION,
3434
description="Dictionary-like lookup from NumPy array values to their integer positions",
3535
long_description=LONG_DESCRIPTION,
36-
python_requires=">=3.8.0",
36+
python_requires=">=3.9",
3737
install_requires=["numpy>=1.19.5"],
3838
url="https://github.com/static-frame/arraymap",
3939
author="Christopher Ariza, Brandt Bucher",
@@ -46,7 +46,6 @@ def get_ext_dir(*components: tp.Iterable[str]) -> tp.Sequence[str]:
4646
"Operating System :: MacOS :: MacOS X",
4747
"Operating System :: Microsoft :: Windows",
4848
"Operating System :: POSIX",
49-
"Programming Language :: Python :: 3.8",
5049
"Programming Language :: Python :: 3.9",
5150
"Programming Language :: Python :: 3.10",
5251
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)