Skip to content

Commit

Permalink
Merge pull request #2401 from Kodiologist/no3
Browse files Browse the repository at this point in the history
Don't create scripts named `hy3` etc.
  • Loading branch information
Kodiologist committed Feb 4, 2023
2 parents 1546a1c + 829e9a5 commit c6db90b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 2 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ Breaking Changes
* New macro `do-mac`.
* New macro `pragma` (although it doesn't do anything useful yet).
* `hy.cmdline.HyREPL` is now `hy.REPL`.
* Redundant scripts named `hy3`, `hyc3`, and `hy2py3` are no longer
installed. Use `hy`, `hyc`, and `hy2py` instead.

Bug Fixes
------------------------------
Expand Down
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,8 @@ def run(self):
entry_points={
"console_scripts": [
"hy = hy.cmdline:hy_main",
"hy3 = hy.cmdline:hy_main",
"hyc = hy.cmdline:hyc_main",
"hyc3 = hy.cmdline:hyc_main",
"hy2py = hy.cmdline:hy2py_main",
"hy2py3 = hy.cmdline:hy2py_main",
"hy2py = hy.cmdline:hy2py_main"
]
},
packages=find_packages(exclude=["tests*"]),
Expand Down

0 comments on commit c6db90b

Please sign in to comment.