Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hdf5 and database restructuring #201

Merged
merged 9 commits into from
Feb 21, 2019
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