Skip to content

Commit

Permalink
Enable forked click-repl to test change
Browse files Browse the repository at this point in the history
Test change to be submitted to click_repl to enable use of general
options in the repl.
  • Loading branch information
kschopmeyer committed Nov 13, 2024
1 parent f4134a0 commit 2811ffd
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
3 changes: 3 additions & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ Released: not yet
from pywbemtools/pywbemcli/_utils.py to pywbemcli/_connection_file_names.py.
(issue # 1423)

* Use click-repl version 3. Currently this is using a forked version since the
proposed changes to fix issues (see issue #1441) have not be accepted.

**Known issues:**

* See `list of open issues`_.
Expand Down
2 changes: 2 additions & 0 deletions minimum-constraints-install.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ nocasedict==1.0.1
Click==8.0.2
click-spinner==0.1.8; python_version <= '3.11'
click-spinner==0.1.10; python_version >= '3.12'
# Removed as a constraint while using the fork as the basis for click-repl
# in requirements.txt
click-repl==0.2
asciitree==0.3.3
tabulate==0.8.2; python_version <= '3.9'
Expand Down
10 changes: 9 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,15 @@ click-spinner>=0.1.8; python_version <= '3.11'
click-spinner>=0.1.10; python_version >= '3.12'
# click-repl 0.2 is needed for compatibility with Click 8.0.
# click-repl version 3.0 causes test failures. See issue #1312
click-repl>=0.2,<0.3.0

# click-repl>=0.2,<0.3.0 # Old definition
# Development of fix for click repl in forked repo issue #1441
# click-repl @ git+https://github.com/kschopmeyer/click-repl.git@ks/allow-general-options
click-repl @ git+https://github.com/pywbem/click-repl.git@allow-general-options
# install click-repl with pip for local test
# pip install /home/kschopmeyer/git-repl/click-repl -- drop this one.
# pip install /home/kschopmeyer/git-click-repl/click-repl/click-repl

asciitree>=0.3.3
# tabulate 0.8.8 fixes ImportError on Python 3.10.
tabulate>=0.8.2; python_version <= '3.9'
Expand Down

0 comments on commit 2811ffd

Please sign in to comment.