Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 17 additions & 20 deletions binder/environment.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,20 @@
name: pyclass
name: flopy
channels:
- conda-forge
dependencies:
- numpy
- matplotlib
- xarray
- requests
- pandas
- python-dateutil
- xlrd
- gdal
- geopandas
- rtree
- descartes
- shapely
- scipy
- netcdf4
- pyproj>=2.0
- rasterio>=1.0
- rasterstats
- pyshp
- pip
- conda-forge::python
- conda-forge::numpy
- conda-forge::matplotlib
- conda-forge::affine
- conda-forge::scipy
- conda-forge::pandas
- conda-forge::netcdf4
- conda-forge::pyshp
- conda-forge::rasterio
- conda-forge::fiona
- conda-forge::descartes
- conda-forge::pyproj
- conda-forge::shapely
- conda-forge::geos=3.8.1 # required until 3.9.2 is available
- conda-forge::geojson
- conda-forge::pip
2 changes: 1 addition & 1 deletion examples/Tutorials/modflow6output/tutorial01_mf6_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
sim_ws=sim_ws, exe_name=exe_name, verbosity_level=0,
)
# change the simulation path, rewrite the files, and run the model
sim_ws = os.path.join("..", "..", "..", "autotest", "temp")
sim_ws = os.path.join("..", "..", "autotest", "temp", "mf6_output")
sim.set_sim_path(sim_ws)
sim.write_simulation(silent=True)
sim.run_simulation(silent=True)
Expand Down