Skip to content

Commit

Permalink
Merge pull request #269 from gilch/3.10
Browse files Browse the repository at this point in the history
Clean up remaining Python 3.8 references
  • Loading branch information
gilch authored Oct 5, 2024
2 parents 464ad95 + 762081b commit 72e199f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
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

0 comments on commit 72e199f

Please sign in to comment.