Skip to content

Commit

Permalink
Update web links
Browse files Browse the repository at this point in the history
  • Loading branch information
p-snft committed Mar 6, 2024
1 parent 5ac52f1 commit 1dc0ec5
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ little bit helps, and credit will always be given.
Bug reports
===========

When `reporting a bug <https://github.com/oemof/oemof.network/issues>`_ please include:
When `reporting a bug <https://github.com/oemof/oemof-network/issues>`_ please include:

* Your operating system name and version.
* Any details about your local setup that might be helpful in troubleshooting.
Expand All @@ -24,7 +24,7 @@ articles, and such.
Feature requests and feedback
=============================

The best way to send feedback is to file an issue at https://github.com/oemof/oemof.network/issues.
The best way to send feedback is to file an issue at https://github.com/oemof/oemof-network/issues.

If you are proposing a feature:

Expand All @@ -37,7 +37,7 @@ Development

To set up `oemof.network` for local development:

1. Fork `oemof.network <https://github.com/oemof/oemof.network>`_
1. Fork `oemof.network <https://github.com/oemof/oemof-network>`_
(look for the "Fork" button).
2. Clone your fork locally::

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ Overview
:alt: Supported versions
:target: https://pypi.org/project/oemof.network

.. |supported-implementations| image:: https://img.shields.io/pypi/implementation/oemof-network.svg
.. |supported-implementations| image:: https://img.shields.io/pypi/implementation/oemof.network.svg
:alt: Supported implementations
:target: https://pypi.org/project/oemof-network
:target: https://pypi.org/project/oemof.network

.. |commits-since| image:: https://img.shields.io/github/commits-since/oemof/oemof-network/v0.5.0/dev
:alt: Commits since latest release
Expand Down
2 changes: 1 addition & 1 deletion docs/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,4 @@ Components and buses can be combined to an energy system. Components and buses a

Graph
-----
In the graph module you will find a function to create a networkx graph from an energy system or solph model. The networkx package provides many features to analyse, draw and export graphs. See the `networkx documentation <https://networkx.github.io/documentation/stable/>`_ for more details. See the API-doc of :py:mod:`~oemof.graph` for all details and an example. The graph module can be used with energy systems of solph as well.
In the graph module you will find a function to create a networkx graph from an energy system or solph model. The networkx package provides many features to analyse, draw and export graphs. See the `networkx documentation <https://networkx.org/documentation/>`_ for more details. See the API-doc of :py:mod:`~oemof.graph` for all details and an example. The graph module can be used with energy systems of solph as well.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def read(*names, **kwargs):
long_description_content_type="text/x-rst",
author="oemof developer group",
author_email="[email protected]",
url="https://github.com/oemof/oemof.network",
url="https://github.com/oemof/oemof-network",
packages=["oemof"] + ["oemof." + p for p in find_packages("src/oemof")],
package_dir={"": "src"},
py_modules=[splitext(basename(path))[0] for path in glob("src/*.py")],
Expand Down Expand Up @@ -69,9 +69,9 @@ def read(*names, **kwargs):
project_urls={
"Documentation": "https://oemofnetwork.readthedocs.io/",
"Changelog": (
"https://oemofnetwork.readthedocs.io/en/latest/changelog.html"
"https://oemof-network.readthedocs.io/en/latest/changelog.html"
),
"Issue Tracker": "https://github.com/oemof/oemof.network/issues",
"Issue Tracker": "https://github.com/oemof/oemof-network/issues",
},
keywords=[
# eg: 'keyword1', 'keyword2', 'keyword3',
Expand Down
2 changes: 1 addition & 1 deletion src/oemof/network/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def create_nx_graph(
):
"""
Create a `networkx.DiGraph` for the passed energy system and plot it.
See http://networkx.readthedocs.io/en/latest/ for more information.
See https://networkx.org/documentation/ for more information.
Parameters
----------
Expand Down

0 comments on commit 1dc0ec5

Please sign in to comment.