You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -869,7 +869,7 @@ We are still in v0, so no major bump yet.
869
869
870
870
### Bug Fixes
871
871
872
-
- Use already parsed docstring sections when dumping full data ([311807b](https://github.com/mkdocstrings/griffe/commit/311807b8fa1716dabe5ba18d3e12c947286afd8e) by Timothée Mazzucotelli). [Discussion griffe-typingdoc#6](https://github.com/mkdocstrings/griffe-typingdoc/discussions/6)
872
+
- Use already parsed docstring sections when dumping full data ([311807b](https://github.com/mkdocstrings/griffe/commit/311807b8fa1716dabe5ba18d3e12c947286afd8e) by Timothée Mazzucotelli). [Discussion griffelib-typingdoc#6](https://github.com/mkdocstrings/griffe-typingdoc/discussions/6)
Copy file name to clipboardExpand all lines: README.md
+14-14Lines changed: 14 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@
11
11
Signatures for entire Python programs. Extract the structure, the frame, the skeleton of your project, to generate API documentation or find breaking changes in your API.
12
12
13
13
Griffe, pronounced "grif" (`/ɡʁif/`), is a french word that means "claw",
14
-
but also "signature" in a familiar way. "On reconnaît bien là sa griffe."
14
+
but also "signature" in a familiar way. "On reconnaît bien là sa griffelib."
Copy file name to clipboardExpand all lines: docs/guide/contributors/architecture.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,8 +22,8 @@ descriptions = {
22
22
"scripts": "Our different scripts. See [Scripts, configuration](#scripts-configuration).",
23
23
"site": "Documentation site, built with `make run mkdocs build` (git-ignored).",
24
24
"src": "The source of our Python package(s). See [Sources](#sources) and [Program structure](#program-structure).",
25
-
"src/griffe": "Our public API, exposed to users. See [Program structure](#program-structure).",
26
-
"src/griffe/_internal": "Our internal API, hidden from users. See [Program structure](#program-structure).",
25
+
"packages/griffe/src/griffe": "Our public API, exposed to users. See [Program structure](#program-structure).",
26
+
"packages/griffe/src/griffe/_internal": "Our internal API, hidden from users. See [Program structure](#program-structure).",
27
27
"tests": "Our test suite. See [Tests](#tests).",
28
28
".copier-answers.yml": "The answers file generated by [Copier](https://copier.readthedocs.io/en/stable/). See [Boilerplate](#boilerplate).",
29
29
"devdeps.txt": "Our development dependencies specification. See [`make setup`][command-setup] command.",
@@ -108,7 +108,7 @@ The test suite is based on [pytest](https://docs.pytest.org/en/8.2.x/). Test mod
108
108
109
109
## Program structure
110
110
111
-
The internal API is contained within the `src/griffe/_internal` folder. The top-level `griffe/__init__.py` module exposes all the public API, by importing the internal objects from various submodules of `griffe._internal`.
111
+
The internal API is contained within the `packages/griffe/src/griffe/_internal` folder. The top-level `griffe/__init__.py` module exposes all the public API, by importing the internal objects from various submodules of `griffe._internal`.
112
112
113
113
Users then import `griffe` directly, or import objects from it.
114
114
@@ -122,7 +122,7 @@ if os.getenv("DEPLOY") == "true":
0 commit comments