Skip to content

Commit

Permalink
[UPDATE] migrate PyInquirer ➡️ InquirerPy
Browse files Browse the repository at this point in the history
  • Loading branch information
mathix420 committed Mar 11, 2023
1 parent afa4df4 commit 2819244
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,6 @@ Default config destination is `$XDG_CONFIG_HOME/rofi-notion` or `$HOME/.config/r

## Deployment

### PyPi

Bump version in `setup.py` then run `make`.
3 changes: 2 additions & 1 deletion rofi_notion/manage.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from PyInquirer import prompt, Validator, ValidationError
from prompt_toolkit.validation import Validator, ValidationError
from .config import rm_db, set_config, config, set_creds
from InquirerPy.resolver import prompt
from prompt_toolkit import document
import re

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='rofi-notion',
version='1.2.0',
version='2.0.0',
description='Quickly create new Notion pages for your databases with rofi as GUI',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
Expand Down Expand Up @@ -45,7 +45,7 @@
install_requires=[
'notion-client==1.0.0',
'python-rofi==1.0.1',
'PyInquirer==1.0.3',
'InquirerPy==0.3.4',
'argparse==1.4.0',
'PyYAML==6.0',
],
Expand Down

0 comments on commit 2819244

Please sign in to comment.