Skip to content

Commit 2e42d11

Browse files
opirkoauvipy
authored andcommitted
support py313, limit click ver
1 parent 26e2a6b commit 2e42d11

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

Makefile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,17 @@ release:
55
testrepl:
66
@python bin/testrepl.py repl
77
.PHONY: testrepl
8+
9+
venv:
10+
@python -m venv .venv
11+
.venv/bin/pip install --upgrade pip
12+
.venv/bin/pip install tox
13+
.PHONY: venv
14+
15+
tox: venv
16+
.venv/bin/tox
17+
.PHONY: tox
18+
19+
clean:
20+
rm -rf .venv .tox
21+
.PHONY: clean

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = click-repl
33
version = attr: click_repl.__version__
44
description = REPL plugin for Click
5-
description-file = README.md
5+
description_file = README.md
66
long_description_content_type = text/markdown
77
long_description = file: README.md
88

@@ -27,7 +27,7 @@ packages=
2727
click_repl
2828

2929
install_requires =
30-
click>=7.0
30+
click>=7.0,<8.2.0
3131
prompt_toolkit>=3.0.36
3232
typing-extensions>=4.7.0
3333

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{py,38,39,310,311,312}
3+
py{py,38,39,310,311,312,313}
44
flake8
55
click7
66

@@ -14,6 +14,7 @@ python =
1414
3.10: py310
1515
3.11: py311
1616
3.12: py312
17+
3.13: py313
1718

1819
[testenv]
1920
setenv =

0 commit comments

Comments
 (0)