Skip to content

Commit 8f4d00c

Browse files
committed
Raise min version of NumPy dependency.
Tcod always uses the type hinting features of the latest NumPy. This is the final version of NumPy with Python 3.7 support. Fixes #115
1 parent d385df4 commit 8f4d00c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cffi>=1.15
2-
numpy>=1.20.3
2+
numpy>=1.21.4
33
pycparser>=2.14
44
setuptools==60.8.2
55
types-setuptools

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def check_sdl_version() -> None:
120120
],
121121
install_requires=[
122122
"cffi>=1.15", # Also required by pyproject.toml.
123-
"numpy>=1.20.3" if not is_pypy else "",
123+
"numpy>=1.21.4" if not is_pypy else "",
124124
"typing_extensions",
125125
],
126126
cffi_modules=["build_libtcod.py:ffi"],

0 commit comments

Comments
 (0)