Skip to content

Support Python 3.13; Limit Click version #131

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

Merged
merged 1 commit into from
Jun 19, 2025
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
14 changes: 14 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,17 @@ release:
testrepl:
@python bin/testrepl.py repl
.PHONY: testrepl

venv:
@python -m venv .venv
.venv/bin/pip install --upgrade pip
.venv/bin/pip install tox
.PHONY: venv

tox: venv
.venv/bin/tox
.PHONY: tox

clean:
rm -rf .venv .tox
.PHONY: clean
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = click-repl
version = attr: click_repl.__version__
description = REPL plugin for Click
description-file = README.md
description_file = README.md
long_description_content_type = text/markdown
long_description = file: README.md

Expand All @@ -27,7 +27,7 @@ packages=
click_repl

install_requires =
click>=7.0
click>=7.0,<8.2.0
prompt_toolkit>=3.0.36
typing-extensions>=4.7.0

Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{py,38,39,310,311,312}
py{py,38,39,310,311,312,313}
flake8
click7

Expand All @@ -14,6 +14,7 @@ python =
3.10: py310
3.11: py311
3.12: py312
3.13: py313

[testenv]
setenv =
Expand Down