Skip to content

Commit

Permalink
run pre commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikKaum committed Aug 19, 2024
1 parent 85a703a commit dbe28ba
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ benchmarks/results
**/dist/

bindings/python/build
bindings/python/src/outlines_core
bindings/python/src/outlines_core
4 changes: 2 additions & 2 deletions bindings/python/Manifest.in
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
graft src
graft src
graft rust
include Cargo.toml

global-exclude */__pycache__/*
global-exclude *.pyc

recursive-include outlines-core-lib *
recursive-exclude outlines-core/target *
recursive-exclude outlines-core/target *
1 change: 0 additions & 1 deletion bindings/python/rust/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,3 @@ mod _lib {
Ok(core_lib::hello())
}
}

1 change: 0 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,3 @@ build-python:
python -m build && \
rm outlines-core-lib && \
sed -i '' 's|path = "outlines-core-lib"|path = "../../outlines-core"|' Cargo.toml

4 changes: 2 additions & 2 deletions outlines-core/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

pub fn hello() -> String {
"world ".to_string()
}
"world ".to_string()
}

0 comments on commit dbe28ba

Please sign in to comment.