Skip to content

Commit a0ffaf4

Browse files
committed
Fix wizards
1 parent 81f4ee1 commit a0ffaf4

3 files changed

Lines changed: 15 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## ?.?.? - Unreleased
2+
3+
* Fixed wizards.
4+
15
## 5.0.0 - 2025-09-08
26

37
* Added support for Python 3.13.

requirements.txt

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ attrs==25.3.0
1010
# referencing
1111
certifi==2025.8.3
1212
# via requests
13-
cffi==1.17.1
13+
cffi==2.0.0
1414
# via cryptography
1515
charset-normalizer==3.4.3
1616
# via requests
@@ -34,9 +34,11 @@ packaging==25.0
3434
# via deprecation
3535
prettytable==3.16.0
3636
# via okdata-cli (setup.py)
37-
prompt-toolkit==3.0.52
38-
# via questionary
39-
pycparser==2.22
37+
prompt-toolkit==3.0.51
38+
# via
39+
# okdata-cli (setup.py)
40+
# questionary
41+
pycparser==2.23
4042
# via cffi
4143
python-keycloak==3.12.0
4244
# via okdata-sdk

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,12 @@
2626
"docopt",
2727
"okdata-sdk>=3.4,<4",
2828
"PrettyTable",
29+
# TODO: Upgrade to questionary 2.x.
2930
"questionary>=1.10.0,<2.0.0",
31+
# Not a direct dependency, but a dependency for questionary. However
32+
# questionary breaks with prompt-toolkit 3.0.52 (and possibly later
33+
# versions as well), so let's pin it sub 3.0.52 for now.
34+
"prompt-toolkit<3.0.52",
3035
"requests",
3136
],
3237
entry_points={"console_scripts": ["okdata=okdata.cli.__main__:main"]},

0 commit comments

Comments
 (0)