Skip to content

Commit b5faf4e

Browse files
authored
Merge pull request #257 from python-grimp/update-links-to-repo
Update links to repo
2 parents 14a8e92 + a1ca506 commit b5faf4e

File tree

5 files changed

+17
-11
lines changed

5 files changed

+17
-11
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ This release was yanked due to poor performance when building very large graphs.
3737
3.8.1 (2025-04-23)
3838
------------------
3939

40-
* Use joblib instead of multiprocessing for CPU parallelism. Fixes https://github.com/seddonym/grimp/issues/208.
40+
* Use joblib instead of multiprocessing for CPU parallelism. Fixes https://github.com/python-grimp/grimp/issues/208.
4141

4242
3.8 (2025-04-11)
4343
----------------
@@ -47,7 +47,7 @@ This release was yanked due to poor performance when building very large graphs.
4747
3.7.1 (2025-03-12)
4848
------------------
4949

50-
* Fixed handling of within-descendant-imports when squashing modules (see `Issue 195 <https://github.com/seddonym/grimp/issues/195>`_).
50+
* Fixed handling of within-descendant-imports when squashing modules (see `Issue 195 <https://github.com/python-grimp/grimp/issues/195>`_).
5151

5252
3.7 (2025-03-07)
5353
----------------

CONTRIBUTING.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ We welcome contributions to Grimp.
77
Bug reports
88
===========
99

10-
When `reporting a bug <https://github.com/seddonym/grimp/issues>`_ please include:
10+
When `reporting a bug <https://github.com/python-grimp/grimp/issues>`_ please include:
1111

1212
* Your operating system name and version.
1313
* Any details about your local setup that might be helpful in troubleshooting.
@@ -16,7 +16,7 @@ When `reporting a bug <https://github.com/seddonym/grimp/issues>`_ please includ
1616
Feature requests and feedback
1717
=============================
1818

19-
The best way to send feedback is to file an issue at https://github.com/seddonym/grimp/issues.
19+
The best way to send feedback is to file an issue at https://github.com/python-grimp/grimp/issues.
2020

2121
If you are proposing a feature:
2222

@@ -64,7 +64,7 @@ You don't need to activate or manage a virtual environment - this is taken care
6464

6565
To set up Grimp for local development:
6666

67-
1. Fork `grimp <https://github.com/seddonym/grimp>`_
67+
1. Fork `grimp <https://github.com/python-grimp/grimp>`_
6868
(look for the "Fork" button).
6969
2. Clone your fork locally::
7070

README.rst

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,19 @@ Grimp
99
:alt: Python versions
1010
:target: https://pypi.org/project/grimp/
1111

12-
.. image:: https://github.com/seddonym/grimp/workflows/CI/badge.svg?branch=main
13-
:target: https://github.com/seddonym/grimp/actions?workflow=CI
12+
.. image:: https://github.com/python-grimp/grimp/actions/workflows/main.yml/badge.svg
13+
:target: https://github.com/python-grimp/grimp/actions?workflow=CI
1414
:alt: CI Status
1515

16-
Builds a queryable graph of the imports within one or more Python packages.
16+
.. image:: https://img.shields.io/endpoint?url=https://codspeed.io/badge.json
17+
:target: https://codspeed.io/python-grimp/grimp?utm_source=badge
18+
:alt: Codspeed
19+
20+
.. image:: https://img.shields.io/badge/License-BSD_2--Clause-orange.svg
21+
:target: https://opensource.org/licenses/BSD-2-Clause
22+
:alt: BSD license
1723

18-
* Free software: BSD license
24+
Builds a queryable graph of the imports within one or more Python packages.
1925

2026
Quick start
2127
-----------

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ readme = "README.rst"
4040

4141
[project.urls]
4242
Documentation = "https://grimp.readthedocs.io/"
43-
Source-code = "https://github.com/seddonym/grimp/"
43+
Source-code = "https://github.com/python-grimp/grimp/"
4444

4545
[dependency-groups]
4646
dev = [

tests/unit/application/graph/test_manipulation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ def test_correctly_handles_imports_within_descendants(self):
458458
# We want to check that this import within the descendants of `animals` does
459459
# not cause problems. If this import is not properly removed then the imports map can
460460
# become corrupted, since it will contain an import to modules that no longer exist.
461-
# See https://github.com/seddonym/grimp/issues/195 for more details.
461+
# See https://github.com/python-grimp/grimp/issues/195 for more details.
462462
graph.add_import(importer="animals.dog", imported="animals.base")
463463

464464
graph.squash_module("animals")

0 commit comments

Comments
 (0)