Skip to content

Commit 00e9f1b

Browse files
authored
small cleanups after move to python/ source dir (#708)
1 parent f43fab3 commit 00e9f1b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ make install
106106

107107
That should be it, the example shown above should now run.
108108

109-
You might find it useful to look at [`pydantic_core/_pydantic_core.pyi`](./pydantic_core/_pydantic_core.pyi) and
110-
[`pydantic_core/core_schema.py`](./pydantic_core/core_schema.py) for more information on the python API,
109+
You might find it useful to look at [`pydantic_core/_pydantic_core.pyi`](./python/pydantic_core/_pydantic_core.pyi) and
110+
[`pydantic_core/core_schema.py`](./python/pydantic_core/core_schema.py) for more information on the python API,
111111
beyond that, [`tests/`](./tests) provide a large number of examples of usage.
112112

113113
If you want to contribute to pydantic-core, you'll want to use some other make commands:

build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use std::process::Command;
44
use std::str::from_utf8;
55

66
fn generate_self_schema() {
7-
println!("cargo:rerun-if-changed=pydantic_core/core_schema.py");
7+
println!("cargo:rerun-if-changed=python/pydantic_core/core_schema.py");
88
println!("cargo:rerun-if-changed=generate_self_schema.py");
99
if Path::new("./src/self_schema.py").exists() && option_env!("CI") == Some("true") {
1010
// self_schema.py already exists and CI indicates we're running on a github actions build,

0 commit comments

Comments
 (0)