From 452a204da7ed5ccbcc09dc59321f9370982892b6 Mon Sep 17 00:00:00 2001 From: devfred78 <97401939+devfred78@users.noreply.github.com> Date: Sat, 12 Feb 2022 21:34:03 +0100 Subject: [PATCH] the project becomes dependent on NumPy --- README.md | 6 ++++++ setup.cfg | 1 + 2 files changed, 7 insertions(+) diff --git a/README.md b/README.md index 49ff5ec..2e233f8 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,12 @@ pygconsole depends on the following packages. The installation of pygconsole sho pip install colorlog ``` +* numpy: version 1.22.0 or above + + ```sh + pip install numpy + ``` + ### Installation Install from PyPi with: diff --git a/setup.cfg b/setup.cfg index 9b6b6fa..9bd8002 100644 --- a/setup.cfg +++ b/setup.cfg @@ -29,6 +29,7 @@ packages = pygconsole install_requires = pygame >= 2.1.0 colorlog >= 6.4.1 + numpy >= 1.22.0 python_requires = >= 3.8 [options.packages.find]