Skip to content
Snippets Groups Projects
Commit ff79ec1e authored by JOSSOUD Olivier's avatar JOSSOUD Olivier
Browse files

Bug correction

parent 6480911e
No related branches found
No related tags found
No related merge requests found
import numpy as np import numpy as np
import pandas as pd import pandas as pd
import matplotlib import matplotlib
import matplotlib.pyplot as plt
import os import os
from scipy import interpolate from scipy import interpolate
......
pyqt5~=5.12 git+ssh://git@gitlab.in2p3.fr/ipsl/lsce/glaccios/iitk.git
pyqtgraph~=0.12 # Bug! Line #70 should be replaced by: bg = np.empty((int(self.params['width']), int(self.params['height']), 4), dtype=np.ubyte) git+ssh://git@gitlab.in2p3.fr/olivier.jossoud/cfatools.git
pandas~=1.3 black~=22.10
configobj~=5.0 configobj~=5.0
sphinx~=1.3 csaps~=1.1
sphinx_rtd_theme~=0.4 matplotlib~=3.6
numpy~=1.18 minimalmodbus~=2.0
numpydoc~=0.8 numpy~=1.23
xmltodict~=0.12 numpydoc~=1.5
statsmodels~=0.11 opencv-python-headless~=4.6
pyinstaller~=4.2 pandas~=1.5
black~=22.1 pandarallel~=1.6
plotnine~=0.7 plotnine~=0.10
git+ssh://git@gitlab.in2p3.fr/olivier.jossoud/cfatools.git pyinstaller~=5.6
\ No newline at end of file pyModbusTCP~=0.2
pyqt5~=5.15
pyqtgraph~=0.13
pyserial~=3.5
sphinx~=5.3
sphinx_rtd_theme~=1.1
statsmodels~=0.13
xmltodict~=0.13
\ No newline at end of file
...@@ -279,7 +279,7 @@ class PicarroInjectionUim(QObject): ...@@ -279,7 +279,7 @@ class PicarroInjectionUim(QObject):
xmin = region.getRegion()[0] xmin = region.getRegion()[0]
xmax = region.getRegion()[1] xmax = region.getRegion()[1]
duration = QTime(0, 0, 0) duration = QTime(0, 0, 0)
duration = duration.addSecs(xmax - xmin) duration = duration.addSecs(int(xmax - xmin))
self.main_ui.picarro_timeedit_validarea_duration.setTime(duration) self.main_ui.picarro_timeedit_validarea_duration.setTime(duration)
mean_sd_dict = self.picarro_prvd.get_mean_and_sd( mean_sd_dict = self.picarro_prvd.get_mean_and_sd(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment