- flexmeasures-entsoe: ENTSO-E data plugin - flexmeasures-weather: Weather data plugin - USEF Flex Trading Protocol PDF (2.4MB) - Cariflex simulator (publishes to Redis) - Dashboard Grafana updated with correct InfluxDB queries - All tools extracted in /tools/
7 lines
286 B
Bash
Executable File
7 lines
286 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
pip install --upgrade mypy > 1.4
|
|
pip install types-pytz types-requests types-Flask types-click types-redis types-tzlocal types-python-dateutil types-setuptools
|
|
files=$(find flexmeasures_weather -name \*.py)
|
|
mypy --follow-imports skip --ignore-missing-imports $files
|