From 762081b95f5ef07faacb622974b5bd49327fb90c Mon Sep 17 00:00:00 2001 From: gilch Date: Sat, 5 Oct 2024 11:55:05 -0600 Subject: [PATCH] Clean up remaining Python 3.8 references We're on 3.10 now. --- README.md | 6 +++--- docs/primer.rst | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0fe4d691..90e827e5 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ Python—Syntactic macro metaprogramming with full access to the Python ecosyste # Installation -Hissp requires Python 3.8+. +Hissp requires Python 3.10+. Install the latest PyPI release with ``` @@ -619,8 +619,8 @@ This gives Hissp a massive advantage over other Lisps with less selection. If you don't care to work with the Python ecosystem, perhaps Hissp is not the Lisp for you. -Note that the Hissp compiler is written in Python 3.8, -and the bundled macros assume at least that level. +Note that the Hissp compiler is currently written for Python 3.10, +and the bundled macros may assume at least that level. (Supporting older versions is not a goal, because that would complicate the compiler. This may limit the available libraries.) diff --git a/docs/primer.rst b/docs/primer.rst index c894413c..629b4356 100644 --- a/docs/primer.rst +++ b/docs/primer.rst @@ -45,7 +45,7 @@ or the `Hissp community chat `_. Installation ============ -Hissp requires Python 3.8+ and has no other dependencies. +Hissp requires Python 3.10+ and has no other dependencies. Confirm your Python version with diff --git a/setup.py b/setup.py index 42e04c5d..82e6e3e7 100644 --- a/setup.py +++ b/setup.py @@ -62,7 +62,7 @@ "": ["*.lissp"] }, # If any package contains *.lissp files, include them. package_dir={"": "../src"}, - python_requires=">=3.8", + python_requires=">=3.10", entry_points={"console_scripts": ["lissp=hissp.__main__:main"]}, ) # Build dist and install: