Skip to content

Commit

Permalink
Relax minor version in dependencies (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
anders-kiaer authored Aug 28, 2019
1 parent 3983842 commit b495467
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 44 deletions.
40 changes: 0 additions & 40 deletions examples/basic_example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
'chromedriver-binary>=74.0.3729.6.0',
'ipdb',
'percy',
'selenium>=3.141.0',
'selenium~=3.141',
'flake8',
'pylint',
'mock'
Expand All @@ -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
)

0 comments on commit b495467

Please sign in to comment.