Skip to content
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ pipx install petab_gui
To install the latest development version from GitHub, run:

```bash
pip install git+https://github.com/PaulJonasJost/PEtab_GUI/
pip install git+https://github.com/PEtab-dev/PEtabGUI/
```

### From a local copy

1. Clone the repository:

```bash
git clone https://github.com/PaulJonasJost/PEtab_GUI.git
git clone https://github.com/PEtab-dev/PEtabGUI.git
```

2. Install the package from the root of the working tree:
Expand All @@ -55,7 +55,7 @@ Optionally, you can provide the path to an existing PEtab YAML file
as an argument.

After loading a PEtab problem, PEtabGUI will look something like this:
![PEtabGUI Screenshot](https://raw.githubusercontent.com/PaulJonasJost/PEtab_GUI/screenshot/docs/source/_static/Application_Screenshot.png)
![PEtabGUI Screenshot](https://raw.githubusercontent.com/PEtab-dev/PEtabGUI/screenshot/docs/source/_static/Application_Screenshot.png)

### Examples

Expand Down
2 changes: 1 addition & 1 deletion docs/source/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Filing an Issue
----------------

If you encounter any bugs or have feature requests, please file an issue on GitHub.
`Open a new issue <https://github.com/PaulJonasJost/PEtab_GUI/issues/new/choose>`__.
`Open a new issue <https://github.com/PEtab-dev/PEtabGUI/issues/new/choose>`__.

When filing an issue, provide as much detail as possible,
including steps to reproduce the issue, expected behavior, and any relevant logs or screenshots.
6 changes: 3 additions & 3 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ PEtab GUI - A graphical user interface for PEtab
Quick Links
-----------

* `GitHub Repository <https://github.com/PaulJonasJost/PEtab_GUI>`_
* `Issue Tracker <https://github.com/PaulJonasJost/PEtab_GUI/issues>`_
* `GitHub Repository <https://github.com/PEtab-dev/PEtabGUI>`_
* `Issue Tracker <https://github.com/PEtab-dev/PEtabGUI/issues>`_
* `PEtab Documentation <https://petab.readthedocs.io/en/latest/>`_

Overview
Expand Down Expand Up @@ -54,5 +54,5 @@ To get started with PEtab GUI, check out the :doc:`installation instructions <re
:maxdepth: 1
:caption: Development

GitHub Repository <https://github.com/PaulJonasJost/PEtab_GUI>
GitHub Repository <https://github.com/PEtab-dev/PEtabGUI>
contributing
2 changes: 1 addition & 1 deletion docs/source/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Alternatively, you can install it from the GitHub repository by following these

.. code-block:: bash

git clone https://github.com/PaulJonasJost/PEtab_GUI.git
git clone https://github.com/PEtab-dev/PEtabGUI.git

2. Install using pip:

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ doc = [
]

[project.urls]
Repository = "https://github.com/PaulJonasJost/PEtab_GUI"
Issues = "https://github.com/PaulJonasJost/PEtab_GUI/issues"
Repository = "https://github.com/PEtab-dev/PEtabGUI"
Issues = "https://github.com/PEtab-dev/PEtabGUI/issues"

[project.gui-scripts]
petab_gui="petab_gui:main"
Expand Down
2 changes: 1 addition & 1 deletion src/petab_gui/C.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#: Application name
APP_NAME = "PEtabGUI"
#: Base URL of the repository
REPO_URL = "https://github.com/PaulJonasJost/PEtab_GUI"
REPO_URL = "https://github.com/PEtab-dev/PEtabGUI"

COLUMNS = {
"measurement": {
Expand Down