diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 58e6317..2aef0b8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,7 @@ jobs: # run: python -m flake8 - name: Build the code and Install dependencies - run: pip install -e .[dev,components] + run: pip install -e .[dev,components,widgets] - name: Run tests run: python -m pytest -v \ No newline at end of file diff --git a/README.md b/README.md index 49f36e3..63421e7 100644 --- a/README.md +++ b/README.md @@ -95,6 +95,11 @@ pip install limbus # limbus alone pip install limbus[components] # limbus + some predefined components ``` +Note that to use widgets you need to install their dependencies: +```bash +pip install limbus[widgets] +``` + ### from the repository: ```bash diff --git a/setup.py b/setup.py index baa6927..091fe0f 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages setup(name='limbus', - version='0.1.2', + version='0.1.3', description='High level interface to create Pytorch Graphs.', long_description=open('README.md').read(), long_description_content_type='text/markdown',