Skip to content

Commit

Permalink
Merge branch 'release/1.1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
dermatologist committed May 3, 2020
2 parents 10d5ab9 + 485b392 commit e5cd86a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ A python library for using the OMOP Common Data Model.
## Installation

```
pip install https://github.com/dermatologist/pyomop/releases/download/1.0.0/pyomop-1.0.0-py2.py3-none-any.whl
pip install https://github.com/dermatologist/pyomop/releases/download/1.1.0/pyomop-1.1.0-py2.py3-none-any.whl
```

Expand Down
7 changes: 4 additions & 3 deletions src/pyomop/main.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import click
from engine_factory import CdmEngineFactory
from cdm6_tables import metadata
from . import CdmEngineFactory
from . import metadata
from . import __version__


@click.command()
Expand Down Expand Up @@ -30,7 +31,7 @@ def cli(verbose, create, dbtype, host, port, user, pw, name, schema):

def main_routine():
click.echo("_________________________________________")
click.echo("Pyomop working:.....")
click.echo("Pyomop " + + __version__ +" working:.....")
cli() # run the main function
click.echo("Pyomop done.")

Expand Down

0 comments on commit e5cd86a

Please sign in to comment.