Skip to content

Commit

Permalink
Merge pull request #201 from philippkraft/hdf5
Browse files Browse the repository at this point in the history
Hdf5 and database restructuring
  • Loading branch information
thouska authored Feb 21, 2019
2 parents 74ca4a0 + b913ee7 commit ac72083
Show file tree
Hide file tree
Showing 13 changed files with 702 additions and 374 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ install:
# Use docutils to generate html describe
- pip install docutils
- pip install numba
- pip install tables


script:
Expand Down
2 changes: 1 addition & 1 deletion spotpy/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def cli():
@click.pass_context
@click.option('--sampler', '-s', type=make_type_from_module(algorithms), default='mc',
help='Select the spotpy sampler')
@click.option('--dbformat', type=make_type_from_module(database, 'Pick'), default='ram',
@click.option('--dbformat', type=click.Choice(database.__dir__()), default='ram',
help='The type of the database')
@click.option('--dbname', type=click.STRING, help='The name of the database, leave open for ram')
@click.option('--parallel', '-p', type=click.Choice(['seq', 'mpc', 'mpi']), default='seq',
Expand Down
355 changes: 0 additions & 355 deletions spotpy/database.py

This file was deleted.

Loading

0 comments on commit ac72083

Please sign in to comment.