-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding float64 support, document level boosting, and facet collector #52
base: master
Are you sure you want to change the base?
Changes from all commits
e6eee86
a5ee926
efb5c71
90ed95a
a5cef2b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Collecting pytest | ||
Downloading pytest-7.1.2-py3-none-any.whl (297 kB) | ||
Requirement already satisfied: colorama in c:\users\alphaceph\anaconda3\envs\py310\lib\site-packages (from pytest) (0.4.4) | ||
Collecting attrs>=19.2.0 | ||
Downloading attrs-21.4.0-py2.py3-none-any.whl (60 kB) | ||
Collecting py>=1.8.2 | ||
Downloading py-1.11.0-py2.py3-none-any.whl (98 kB) | ||
Collecting atomicwrites>=1.0 | ||
Downloading atomicwrites-1.4.1.tar.gz (14 kB) | ||
Collecting pluggy<2.0,>=0.12 | ||
Downloading pluggy-1.0.0-py2.py3-none-any.whl (13 kB) | ||
Collecting packaging | ||
Downloading packaging-21.3-py3-none-any.whl (40 kB) | ||
Collecting iniconfig | ||
Downloading iniconfig-1.1.1-py2.py3-none-any.whl (5.0 kB) | ||
Requirement already satisfied: tomli>=1.0.0 in c:\users\alphaceph\anaconda3\envs\py310\lib\site-packages (from pytest) (2.0.1) | ||
Collecting pyparsing!=3.0.5,>=2.0.2 | ||
Downloading pyparsing-3.0.9-py3-none-any.whl (98 kB) | ||
Building wheels for collected packages: atomicwrites | ||
Building wheel for atomicwrites (setup.py): started | ||
Building wheel for atomicwrites (setup.py): finished with status 'done' | ||
Created wheel for atomicwrites: filename=atomicwrites-1.4.1-py2.py3-none-any.whl size=6957 sha256=a1a268c4dc96c217af8ea7655cc187e388dcca401b511a0a00e532af25c25aee | ||
Stored in directory: c:\users\alphaceph\appdata\local\pip\cache\wheels\34\07\0b\33b15f68736109f72ea0bb2499521d87312b932620737447a2 | ||
Successfully built atomicwrites | ||
Installing collected packages: pyparsing, py, pluggy, packaging, iniconfig, attrs, atomicwrites, pytest | ||
Successfully installed atomicwrites-1.4.1 attrs-21.4.0 iniconfig-1.1.1 packaging-21.3 pluggy-1.0.0 py-1.11.0 pyparsing-3.0.9 pytest-7.1.2 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
[build-system] | ||
requires = ["maturin"] | ||
requires = ["maturin>=0.13,<0.14"] | ||
build-backend = "maturin" | ||
|
||
[project] | ||
name = "tantivy" | ||
requires-python = ">=3.7" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
maturin | ||
maturin==0.13.0 | ||
pytest>=4.0 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,7 +48,7 @@ impl Facet { | |
#[classmethod] | ||
fn from_string(_cls: &PyType, facet_string: &str) -> Facet { | ||
Facet { | ||
inner: schema::Facet::from(facet_string), | ||
inner: schema::Facet::from_text(facet_string).unwrap(), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I was going to comment about the I'm curious what was the reason for this change? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't exactly remember this change. Maybe I couldn't get facets to work without it |
||
} | ||
} | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file seems like it was added in error...?