diff --git a/examples/basic_example.yaml b/examples/basic_example.yaml index 8dcf32f0f..0109da219 100644 --- a/examples/basic_example.yaml +++ b/examples/basic_example.yaml @@ -15,49 +15,9 @@ pages: - title: Front page content: - Webviz created from configuration file - - title: Summary vectors - content: - - Some text... - - container: SummaryStats - ensembles: - - iter-0 - - iter-1 - - ...some other text - - title: Parameter distribution - content: - - Some text... - - container: ParameterDistribution - ensembles: - - iter-0 - - iter-1 - - ...some other text - - title: Inplace volumes - content: - - container: InplaceVolumes - ensembles: [iter-0, iter-1] - volfiles: - geogrid: geogrid--oil.csv - simgrid: simgrid--oil.csv - title: Morris Plot content: - Some text... - container: MorrisPlot csv_file: morris.csv - ...some other text - - title: Subsurface map - content: - - container: SubsurfaceMap - ensemble: iter-0 - map_value: PERMX - flow_value: FLOWAT - time_step: 26 - - title: History match - content: - - container: HistoryMatch - ensembles: - - iter-0 - - iter-1 - observation_file: some_observation_file.yaml - - title: Another page - content: - - Some basic text with special characters... Åre, Smørbukk Sør. diff --git a/setup.py b/setup.py index 292ae83f4..d7317a6f5 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ 'chromedriver-binary>=74.0.3729.6.0', 'ipdb', 'percy', - 'selenium>=3.141.0', + 'selenium~=3.141', 'flake8', 'pylint', 'mock' @@ -34,15 +34,15 @@ ] }, install_requires=[ - 'scipy>=1.2.1', - 'dash-daq>=0.1.5', + 'scipy~=1.2', + 'dash-daq~=0.1', 'webviz-config>=0.0.4', 'webviz-plotly>=0.0.1', 'webviz-subsurface-components>=0.0.3' ], tests_require=tests_require, extras_require={'tests': tests_require}, - setup_requires=['setuptools_scm>=3.2.0'], + setup_requires=['setuptools_scm~=3.2'], use_scm_version=True, zip_safe=False )