File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -106,8 +106,8 @@ make install
106
106
107
107
That should be it, the example shown above should now run.
108
108
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,
111
111
beyond that, [ ` tests/ ` ] ( ./tests ) provide a large number of examples of usage.
112
112
113
113
If you want to contribute to pydantic-core, you'll want to use some other make commands:
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ use std::process::Command;
4
4
use std:: str:: from_utf8;
5
5
6
6
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" ) ;
8
8
println ! ( "cargo:rerun-if-changed=generate_self_schema.py" ) ;
9
9
if Path :: new ( "./src/self_schema.py" ) . exists ( ) && option_env ! ( "CI" ) == Some ( "true" ) {
10
10
// self_schema.py already exists and CI indicates we're running on a github actions build,
You can’t perform that action at this time.
0 commit comments