Skip to content

Commit

Permalink
Removed old examples, Created new monkey example (#1347)
Browse files Browse the repository at this point in the history
* removed all old examples

* example monkeys start

* monkey see monkey doo

* example complete with monkeys

* example complete with monkeys

* add example run to test

* add test to workflow, clear warnings

* deps

* deps

* deps

* reduced output

* Updated examples ot new api

---------

Co-authored-by: miratepuffin <[email protected]>
  • Loading branch information
Haaroon and miratepuffin authored Nov 16, 2023
1 parent f9b8799 commit e12c727
Show file tree
Hide file tree
Showing 41 changed files with 6,310 additions and 9,606 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test_python_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,13 @@ jobs:
- name: Install Python dependencies (Unix)
if: "contains(matrix.os, 'Ubuntu') || contains(matrix.os, 'macOS')"
run: |
python -m pip install -q pytest networkx numpy seaborn pandas nbmake pytest-xdist matplotlib pyvis
python -m pip install -q pytest networkx numpy seaborn pandas nbmake pytest-xdist matplotlib pyvis nbconvert ipywidgets
python -m pip install target/wheels/raphtory-*.whl
python -m pip install -e examples/custom_python_extension
- name: Install Python dependencies (Windows)
if: "contains(matrix.os, 'Windows')"
run: |
python -m pip install -q pytest networkx numpy seaborn pandas nbmake pytest-xdist matplotlib pyvis
python -m pip install -q pytest networkx numpy seaborn pandas nbmake pytest-xdist matplotlib pyvis nbconvert ipywidgets
$folder_path = "target/wheels/"
Get-ChildItem -Path $folder_path -Recurse -Include *.whl | ForEach-Object {
python -m pip install "$($_.FullName)"
Expand All @@ -130,6 +130,9 @@ jobs:
- name: Run Python extension tests
run: |
cd examples/custom_python_extension/test && pytest .
- name: Run example notebook
working-directory: examples/python/socio-patterns
run: jupyter nbconvert --to notebook --execute example.ipynb
- name: Print sccache stats
run: sccache --show-stats
- name: Stop sccache server
Expand Down
Loading

0 comments on commit e12c727

Please sign in to comment.