diff --git a/docs/change_log/index.md b/docs/change_log/index.md index 17e301b70..f6159d27c 100644 --- a/docs/change_log/index.md +++ b/docs/change_log/index.md @@ -3,6 +3,10 @@ title: Change Log Python-Markdown Change Log ========================= +March 23, 2023: version 3.4.3 (a bug-fix release). + +* Restore console script (#1327). + March 22, 2023: version 3.4.2 (a bug-fix release). * Improve standalone * and _ parsing (#1300). diff --git a/makefile b/makefile index ec97db9c0..b7ac0f3bc 100644 --- a/makefile +++ b/makefile @@ -14,7 +14,7 @@ help: .PHONY : install install: - python setup.py install + pip install . .PHONY : deploy deploy: diff --git a/pyproject.toml b/pyproject.toml index 17b47517b..1df688541 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -60,7 +60,7 @@ testing = [ 'Issue Tracker' = 'https://github.com/Python-Markdown/markdown/issues' 'Changelog' = 'https://github.com/Python-Markdown/markdown/blob/master/docs/change_log/index.md' -[project.entry-points.scripts] +[project.scripts] markdown_py = 'markdown.__main__:run' [project.entry-points.'markdown.extensions']