8000 Updating links to reflect org change by marimeireles · Pull Request #264 · cytoscape/ipycytoscape · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Updating links to reflect org change #264

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

Merged
merged 1 commit into from
May 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ Try it out using binder: [![Binder](https://mybinder.org/badge_logo.svg)](https:

#### Supports:

* Conversion from NetworkX see [example1](https://github.com/QuantStack/ipycytoscape/blob/master/examples/Test%20NetworkX%20methods.ipynb), [example2](https://github.com/QuantStack/ipycytoscape/blob/master/examples/NetworkX%20Example.ipynb)
* Conversion from Pandas DataFrame see [example](https://github.com/QuantStack/ipycytoscape/blob/master/examples/pandas.ipynb)
* Conversion from neo4j see [example](https://github.com/QuantStack/ipycytoscape/blob/master/examples/Neo4j_Example.ipynb)
* Conversion from NetworkX see [example1](https://github.com/cytoscape/ipycytoscape/blob/master/examples/Test%20NetworkX%20methods.ipynb), [example2](https://github.com/cytoscape/ipycytoscape/blob/master/examples/NetworkX%20Example.ipynb)
* Conversion from Pandas DataFrame see [example](https://github.com/cytoscape/ipycytoscape/blob/master/examples/pandas.ipynb)
* Conversion from neo4j see [example](https://github.com/cytoscape/ipycytoscape/blob/master/examples/Neo4j_Example.ipynb)
- Currently there's no package of `py2neo` available that's compatible with `ipycytoscape`. As a provisory solution to this problem you can use the package offered by `pypi` and install it with the following line: `pip install -e ".[neo4j]"`

## Installation
Expand Down Expand Up @@ -67,7 +67,7 @@ conda create -n ipycytoscape -c conda-forge jupyterlab nodejs>13 networkx
conda activate ipycytoscape

# clone repo
git clone https://github.com/QuantStack/ipycytoscape.git
git clone https://github.com/cytoscape/ipycytoscape.git
cd ipycytoscape
```

Expand Down
6 changes: 3 additions & 3 deletions docs/source/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ Contributing
============

Thanks for thinking of a way to help improve this library! Remember that contributions come in all
shapes and sizes beyond writing bug fixes: Contributing to documentation, opening new `issues <https://github.com/quantstack/ipycytoscape/issues>`_ for bugs, asking for clarification
shapes and sizes beyond writing bug fixes: Contributing to documentation, opening new `issues <https://github.com/cytoscape/ipycytoscape/issues>`_ for bugs, asking for clarification
on things you find unclear, and requesting new features, are all super valuable contributions.

Code Improvements
-----------------

All development for this library happens on Github at `ipycytoscape <https://github.com/quantstack/ipycytoscape>`_.
All development for this library happens on Github at `ipycytoscape <https://github.com/cytoscape/ipycytoscape>`_.

Seeing your changes
^^^^^^^^^^^^^^^^^^^
Expand All @@ -33,7 +33,7 @@ Using Git/Github can confusing (https://xkcd.com/1597/) so if you're new to Git,
it helpful to use a program like `Github Desktop <desktop.github.com>`_ and to follow
a `guide <https://github.com/firstcontributions/first-contributions#first-contributions>`_.

Also feel free to ask for help/advice on the relevant Github `issue <https://github.com/quantstack/ipycytoscape/issues>`_
Also feel free to ask for help/advice on the relevant Github `issue <https://github.com/cytoscape/ipycytoscape/issues>`_
or in the `Gitter chat <https://gitter.im/QuantStack/Lobby>`_.

Documentation
Expand Down
2 changes: 1 addition & 1 deletion docs/source/develop-install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Developer install
To install a developer version of ipycytoscape, you will first need to clone
the repository::

git clone https://github.com/Quantstack/ipycytoscape
git clone https://github.com/cytoscape/ipycytoscape
cd ipycytoscape

Next, install it with a develop install using pip::
Expand Down
9 changes: 3 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
"css/*.css",
"LICENSE"
],
"homepage": "https://github.com/Quantstack/ipycytoscape",
"homepage": "https://github.com/cytoscape/ipycytoscape",
"bugs": {
"url": "https://github.com/Quantstack/ipycytoscape/issues"
"url": "https://github.com/cytoscape/ipycytoscape/issues"
},
"license": "BSD-3-Clause",
"author": {
Expand All @@ -27,7 +27,7 @@
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Quantstack/ipycytoscape"
"url": "https://github.com/cytoscape/ipycytoscape"
},
"scripts": {
"build": "npm run build:lib && npm run build:all",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
packages=find_packages(),
author="Mariana Meireles",
author_email="mariana.meireles@quantstack.net",
url="https://github.com/Quantstack/ipycytoscape",
url="https://github.com/cytoscape/ipycytoscape",
license="BSD",
platforms="Linux, Mac OS X, Windows",
keywords=["Jupyter", "Widgets", "IPython"],
Expand Down
0