Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clean up remaining Python 3.8 references #269

Merged
merged 1 commit into from
Oct 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Python—Syntactic macro metaprogramming with full access to the Python ecosyste
<!-- markdown-toc end -->

# Installation
Hissp requires Python 3.8+.
Hissp requires Python 3.10+.

Install the latest PyPI release with
```
Expand Down Expand Up @@ -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.)
Expand Down
2 changes: 1 addition & 1 deletion docs/primer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ or the `Hissp community chat <https://gitter.im/hissp-lang/community>`_.
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

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Loading