From e603efb93b63ac5d6a6aad72fce3817e06ecda66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20H=C3=B6nig?= <jan.hoenig@fau.de> Date: Tue, 17 Aug 2021 14:55:52 +0200 Subject: [PATCH] Increasing the minimal python version --- binder/environment.yml | 2 +- doc/conf.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/binder/environment.yml b/binder/environment.yml index 8ba6b6669..5a58aeafe 100644 --- a/binder/environment.yml +++ b/binder/environment.yml @@ -14,7 +14,7 @@ name: pystencils dependencies: # Basic dependencies: - - python >= 3.6 + - python >= 3.8 - numpy - sympy >= 1.1 - appdirs # to find default cache directory on each platform diff --git a/doc/conf.py b/doc/conf.py index d71558e76..2efbf0ebe 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -51,7 +51,7 @@ nbsphinx_execute = 'never' nbsphinx_codecell_lexer = 'python3' # Example configuration for intersphinx: refer to the Python standard library. -intersphinx_mapping = {'python': ('https://docs.python.org/3.6', None), +intersphinx_mapping = {'python': ('https://docs.python.org/3.8', None), 'numpy': ('https://docs.scipy.org/doc/numpy/', None), 'matplotlib': ('https://matplotlib.org/', None), 'sympy': ('https://docs.sympy.org/latest/', None), diff --git a/setup.py b/setup.py index 94df6ce80..29fdc206c 100644 --- a/setup.py +++ b/setup.py @@ -134,6 +134,6 @@ setuptools.setup(name='pystencils', 'ipython', 'randomgen>=1.18'], - python_requires=">=3.6", + python_requires=">=3.8", cmdclass=get_cmdclass() ) -- GitLab