Skip to content

Commit e25cf5d

Browse files
committed
BUG: Use link to new repository
Closes #11
1 parent c7add6b commit e25cf5d

11 files changed

Lines changed: 16 additions & 16 deletions

File tree

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ Once tested, reviewed and approved, they will be merged back into `main`.
1313
The medkit contributing process is as follows:
1414

1515
- fork the project into your personal space
16-
- before creating a new branch, open an [issue](https://github.com/TeamHeka/medkit/issues/new) describing the bug or the feature you will be working on, unless there is already an existing issue.
16+
- before creating a new branch, open an [issue](https://github.com/medkit-lib/medkit/issues/new) describing the bug or the feature you will be working on, unless there is already an existing issue.
1717
- in your fork, create a branch from `main` and name it with a short description: `<issue-id>-<short-description>` (without the `#` character).
1818
- start working by adding commits to this branch. Try to have clear [commit messages](https://cbea.ms/git-commit/). Do not forget to also write tests in the `tests/`directory if applicable (cf [Tests](#tests)).
1919
- once you are done, check that your code follows our coding standards with `black`and `flake8` (cf [Linting and formatting](#linting-and-formatting)) and that all the tests pass with `pytest` (cf [Tests](#tests))
20-
- open a [pull request](https://github.com/TeamHeka/medkit/compare) (PR). Unit tests and linting/formatting checks will automatically be run on the PR and prevent it from being merged if they fail.
20+
- open a [pull request](https://github.com/medkit-lib/medkit/compare) (PR). Unit tests and linting/formatting checks will automatically be run on the PR and prevent it from being merged if they fail.
2121
- once all CI checks passed, wait for the review of the medkit maintainers. They will make sure it aligns with the project goals and may ask for some changes.
2222

2323
Once this reviewing phase is over, the pull request will be integrated into `main`, either with a merge, a squash & merge or a rebase, depending on the impact of the merge request and the state of its git history.

docs/api/text.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ reference of the file.
260260
:::{note}
261261
You may test French default rules using `section_tokenizer = SectionTokenizer()`.
262262
The corresponding file content is available
263-
[here](https://raw.githubusercontent.com/TeamHeka/medkit/develop/medkit/text/segmentation/default_section_definition.yml).
263+
[here](https://raw.githubusercontent.com/medkit-lib/medkit/develop/medkit/text/segmentation/default_section_definition.yml).
264264
:::
265265

266266
For {class}`~.text.segmentation.SyntagmaTokenizer`, here is the yaml schema
@@ -272,7 +272,7 @@ start of a new syntagma.
272272
:::{note}
273273
You may test default French rules using `syntagma_tokenizer = SyntagmaTokenizer()`.
274274
The corresponding file content is available
275-
[here](https://raw.githubusercontent.com/TeamHeka/medkit/develop/medkit/text/segmentation/default_syntagma_definition.yml).
275+
[here](https://raw.githubusercontent.com/medkit-lib/medkit/develop/medkit/text/segmentation/default_syntagma_definition.yml).
276276
:::
277277

278278

docs/examples/brat_io.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Consider this text file:
3030
+++
3131
```{code-cell} ipython3
3232
# You can download the file available in source code
33-
# !wget https://raw.githubusercontent.com/TeamHeka/medkit/main/docs/examples/input/brat/doc_01.txt
33+
# !wget https://raw.githubusercontent.com/medkit-lib/medkit/main/docs/examples/input/brat/doc_01.txt
3434
3535
from pathlib import Path
3636
@@ -43,7 +43,7 @@ It has the following brat annotation file:
4343

4444
```{code-cell} ipython3
4545
# You can download the file available in source code
46-
# !wget https://raw.githubusercontent.com/TeamHeka/medkit/main/docs/examples/input/brat/doc_01.ann
46+
# !wget https://raw.githubusercontent.com/medkit-lib/medkit/main/docs/examples/input/brat/doc_01.ann
4747
4848
print(Path("./input/brat/doc_01.ann").read_text(encoding="utf-8"))
4949
```

docs/examples/cleaning_text.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Consider the following document:
2525

2626
```{code-cell} ipython3
2727
# You can download the file available in source code
28-
# !wget https://raw.githubusercontent.com/TeamHeka/medkit/main/docs/examples/input/text/text_to_clean.txt
28+
# !wget https://raw.githubusercontent.com/medkit-lib/medkit/main/docs/examples/input/text/text_to_clean.txt
2929
3030
from pathlib import Path
3131
from medkit.core.text import TextDocument

docs/examples/text_segmentation/document.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Let's detect the sections and add some annotations using medkit operations.
2929

3030
```{code-cell} ipython3
3131
# You can download the file available in source code
32-
# !wget https://raw.githubusercontent.com/TeamHeka/medkit/main/docs/data/text/1.txt
32+
# !wget https://raw.githubusercontent.com/medkit-lib/medkit/main/docs/data/text/1.txt
3333
3434
from pathlib import Path
3535
from medkit.core.text import TextDocument

docs/examples/text_segmentation/section.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ For beginners, let's load a text file using the {class}`~medkit.core.text.TextDo
2727

2828
```{code-cell} ipython3
2929
# You can download the file available in source code
30-
# !wget https://raw.githubusercontent.com/TeamHeka/medkit/main/docs/data/text/1.txt
30+
# !wget https://raw.githubusercontent.com/medkit-lib/medkit/main/docs/data/text/1.txt
3131
3232
from pathlib import Path
3333
from medkit.core.text import TextDocument

docs/examples/text_segmentation/syntagma.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ For beginners, let's load a text file using the {class}`~medkit.core.text.TextDo
2525

2626
```{code-cell} ipython3
2727
# You can download the file available in source code
28-
# !wget https://raw.githubusercontent.com/TeamHeka/medkit/main/docs/data/text/1.txt
28+
# !wget https://raw.githubusercontent.com/medkit-lib/medkit/main/docs/data/text/1.txt
2929
3030
from pathlib import Path
3131
from medkit.core.text import TextDocument

docs/user_guide/context_detection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ for syntagma_seg in syntagma_segs:
194194

195195
As you can see, a few sentences where split into smaller parts. We can now run a
196196
{class}`~medkit.text.context.NegationDetector` instance on the syntagmas (using
197-
the [default rules file](https://github.com/TeamHeka/medkit/blob/main/medkit/text/context/negation_detector_default_rules.yml)).
197+
the [default rules file](https://github.com/medkit-lib/medkit/blob/main/medkit/text/context/negation_detector_default_rules.yml)).
198198

199199
```{code-cell} ipython3
200200
from medkit.text.context import NegationDetector, NegationDetectorRule

docs/user_guide/first_steps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ For starters, let's load a text file using the
2424

2525
```{code-cell} ipython3
2626
# You can download the file available in source code
27-
# !wget https://raw.githubusercontent.com/TeamHeka/medkit/main/docs/data/text/1.txt
27+
# !wget https://raw.githubusercontent.com/medkit-lib/medkit/main/docs/data/text/1.txt
2828
2929
from pathlib import Path
3030
from medkit.core.text import TextDocument

docs/user_guide/install.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ From 0.4.1 version, medkit package (named **medkit-lib**) is available on
99
[PyPi](https://pypi.org/project/medkit-lib/).
1010
:::
1111

12-
Releases are published on <https://github.com/TeamHeka/medkit/releases>.
12+
Releases are published on <https://github.com/medkit-lib/medkit/releases>.
1313

1414
To install medkit :
1515

@@ -35,8 +35,8 @@ pip install 'medkit-lib[all]'
3535
## Install a development version
3636

3737
If you want to contribute, clone the `medkit` repository locally:
38-
- SSH: `git clone git@github.com:TeamHeka/medkit.git`
39-
- HTTPS: `git clone https://github.com/TeamHeka/medkit.git`
38+
- SSH: `git clone git@github.com:medkit-lib/medkit.git`
39+
- HTTPS: `git clone https://github.com/medkit-lib/medkit.git`
4040

4141
[Poetry](https://python-poetry.org) is used for managing dependencies and
4242
packaging medkit.

0 commit comments

Comments
 (0)