File tree Expand file tree Collapse file tree 11 files changed +2353
-2262
lines changed
smartmeter_datacollector_configurator
frontend/smartmeter-datacollector-configurator Expand file tree Collapse file tree 11 files changed +2353
-2262
lines changed Original file line number Diff line number Diff line change @@ -4,15 +4,16 @@ verify_ssl = true
44name = " pypi"
55
66[packages ]
7- starlette = " ~=0.27.0 "
8- uvicorn = " ~=0.22 .0"
7+ starlette = " ~=0.37.2 "
8+ uvicorn = " ~=0.29 .0"
99pydantic = " ~=1.10.7"
1010
1111[dev-packages ]
1212autopep8 = " *"
1313chardet = " *"
1414isort = " *"
1515pipenv-setup = " *"
16+ plette = " ~=0.4"
1617pylint = " *"
1718pytest = " *"
1819setuptools = " *"
Original file line number Diff line number Diff line change 1+ smartmeter-datacollector-configurator (1.2.0-1) unstable; urgency=low
2+
3+ * add L+G E570 meter
4+ * update frontend & backend dependencies
5+
6+ -- Supercomputing Systems AG <info@scs.ch> Wed, 27 Mar 2024 13:10:32 +0100
7+
18smartmeter-datacollector-configurator (1.1.0-1) unstable; urgency=low
29
310 * add L+G E360 meter
Original file line number Diff line number Diff line change 99echo -n " Installing dependencies using pip.."
1010# write a pip requirements.txt for automatic dependency installation
1111echo " -i https://pypi.org/simple
12- anyio==3.6.2 ; python_full_version >= '3.6.2'
13- click==8.1.3 ; python_version >= '3.7'
12+ anyio==4.3.0 ; python_version >= '3.8'
13+ click==8.1.7 ; python_version >= '3.7'
14+ exceptiongroup==1.2.0 ; python_version < '3.11'
1415h11==0.14.0 ; python_version >= '3.7'
15- idna==3.4 ; python_version >= '3.5'
16- pydantic==1.10.7
17- sniffio==1.3.0 ; python_version >= '3.7'
18- starlette==0.27.0
19- typing-extensions==4.5 .0 ; python_version >= '3.7 '
20- uvicorn==0.22 .0" > /tmp/requirements.txt
16+ idna==3.6 ; python_version >= '3.5'
17+ pydantic==1.10.14
18+ sniffio==1.3.1 ; python_version >= '3.7'
19+ starlette==0.37.2
20+ typing-extensions==4.10 .0 ; python_version >= '3.8 '
21+ uvicorn==0.29 .0" > /tmp/requirements.txt
2122# install all required dependencies
2223python3 -m pip install -r /tmp/requirements.txt > /dev/null 2>&1
2324rm /tmp/requirements.txt
Original file line number Diff line number Diff line change 4545 ),
4646 include_package_data = True ,
4747 install_requires = [
48- "anyio==3.6.2; python_full_version >= '3.6.2'" ,
49- "click==8.1.3; python_version >= '3.7'" ,
48+ "anyio==4.3.0; python_version >= '3.8'" ,
49+ "click==8.1.7; python_version >= '3.7'" ,
50+ "exceptiongroup==1.2.0; python_version < '3.11'" ,
5051 "h11==0.14.0; python_version >= '3.7'" ,
51- "idna==3.4 ; python_version >= '3.5'" ,
52- 'pydantic==1.10.7 ' ,
53- "sniffio==1.3.0 ; python_version >= '3.7'" ,
54- 'starlette==0.27.0 ' ,
55- "typing-extensions==4.5 .0; python_version >= '3.7 '" ,
56- 'uvicorn==0.22 .0'
52+ "idna==3.6 ; python_version >= '3.5'" ,
53+ 'pydantic==1.10.14 ' ,
54+ "sniffio==1.3.1 ; python_version >= '3.7'" ,
55+ 'starlette==0.37.2 ' ,
56+ "typing-extensions==4.10 .0; python_version >= '3.8 '" ,
57+ 'uvicorn==0.29 .0'
5758 ],
5859 scripts = ["bin/smartmeter-datacollector-configurator" ],
5960 zip_safe = True ,
Original file line number Diff line number Diff line change 1- __version__ = "1.1 .0"
1+ __version__ = "1.2 .0"
Original file line number Diff line number Diff line change 1111class MeterType (str , Enum ):
1212 LGE450 = "lge450"
1313 LGE360 = "lge360"
14+ LGE570 = "lge570"
1415 ISKRAAM550 = "iskraam550"
1516 KAMSTRUP_HAN = "kamstrup_han"
1617
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Install latest LTS [nodejs (version 16.x.x)](https://nodejs.org/en/) which also
1515
1616Setup the project running
1717```
18- npm install --dev
18+ npm install --include= dev
1919```
2020inside the ` frontend/smartmeter-datacollector-configurator ` directory.
2121
You can’t perform that action at this time.
0 commit comments