Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
lferraz committed Feb 14, 2023
1 parent 695d1c0 commit 02662d9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -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',
Expand Down

0 comments on commit 02662d9

Please sign in to comment.