mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-09 17:07:43 +01:00
replaced PyInquirer with inquirer for python 3.10 compatibility
This commit is contained in:
parent
d6316a13f6
commit
8d6f21749d
5 changed files with 5 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
||||||
FROM mcr.microsoft.com/vscode/devcontainers/python:3.9-bullseye
|
FROM mcr.microsoft.com/vscode/devcontainers/python:3.10-bullseye
|
||||||
|
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get upgrade -y
|
&& apt-get upgrade -y
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
__version__ = "4.0.8.a1"
|
__version__ = "4.1.0.a1"
|
||||||
__codename__ = "November Rain"
|
__codename__ = "November Rain"
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@ from colorama import Fore, Back, Style
|
||||||
import importlib
|
import importlib
|
||||||
from importlib_metadata import metadata
|
from importlib_metadata import metadata
|
||||||
from tabulate import tabulate
|
from tabulate import tabulate
|
||||||
from PyInquirer import prompt, print_json
|
from inquirer import prompt
|
||||||
import platform
|
import platform
|
||||||
import time
|
import time
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ importlib_metadata==4.11.1
|
||||||
asyncio-mqtt
|
asyncio-mqtt
|
||||||
psutil==5.9.4
|
psutil==5.9.4
|
||||||
zipp>=0.5
|
zipp>=0.5
|
||||||
PyInquirer==1.0.3
|
|
||||||
colorama==0.4.6
|
colorama==0.4.6
|
||||||
pytest-aiohttp
|
pytest-aiohttp
|
||||||
coverage==6.3.1
|
coverage==6.3.1
|
||||||
|
inquirer==3.1.1
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -55,7 +55,7 @@ setup(name='cbpi4',
|
||||||
'shortuuid==1.0.11',
|
'shortuuid==1.0.11',
|
||||||
'tabulate==0.9.0',
|
'tabulate==0.9.0',
|
||||||
'asyncio-mqtt',
|
'asyncio-mqtt',
|
||||||
'PyInquirer==1.0.3',
|
'inquirer==3.1.1',
|
||||||
'colorama==0.4.6',
|
'colorama==0.4.6',
|
||||||
'psutil==5.9.4',
|
'psutil==5.9.4',
|
||||||
'cbpi4gui',
|
'cbpi4gui',
|
||||||
|
|
Loading…
Reference in a new issue