Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into mwestats
Browse files Browse the repository at this point in the history
  • Loading branch information
oktaal committed Mar 8, 2024
2 parents 5ba0899 + 1e558f4 commit fcdc1f5
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 15 deletions.
46 changes: 34 additions & 12 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,26 +1,48 @@
#
# This file is autogenerated by pip-compile with python 3.7
# To update, run:
# This file is autogenerated by pip-compile with Python 3.10
# by the following command:
#
# pip-compile
#
alpino-query==2.1.9
alpino-query==2.1.10
# via mwe-query (setup.py)
auchann==0.1.1
# via sastadev
basexclient==8.4.4
# via mwe-query (setup.py)
certifi==2022.6.15
certifi==2023.7.22
# via requests
charset-normalizer==2.1.0
chamd==0.5.11
# via auchann
charset-normalizer==3.2.0
# via requests
idna==3.3
editdistance==0.6.2
# via auchann
et-xmlfile==1.1.0
# via openpyxl
idna==3.4
# via requests
lxml==4.9.1
# via alpino-query
requests==2.28.1
lxml==4.9.3
# via
# alpino-query
# sastadev
openpyxl==3.1.2
# via sastadev
pyyaml==6.0.1
# via pyyaml-include
pyyaml-include==1.3.1
# via auchann
requests==2.31.0
# via
# alpino-query
# mwe-query (setup.py)
sastadev==0.0.4a2
# via mwe-query (setup.py)
urllib3==1.26.11
sastadev==0.1.1
# via
# auchann
# mwe-query (setup.py)
typing-extensions==4.7.1
# via sastadev
urllib3==2.0.4
# via requests
xlsxwriter==3.1.2
# via sastadev
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
package_data={"mwe_query": ["py.typed"]},
zip_safe=True,
install_requires=[
'alpino-query>=2.1.8', 'requests', 'BaseXClient', 'sastadev'
'alpino-query>=2.1.8', 'requests', 'BaseXClient', 'sastadev>=0.1.1'
],
entry_points={
'console_scripts': [
Expand Down
2 changes: 1 addition & 1 deletion tests/getlcat_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ def testwholelassy():
print(f'Accuracy = {goodcount} / {counter} = {goodcount/counter*100}')

if __name__ == '__main__':
testwholelassy()
testwholelassy()
3 changes: 2 additions & 1 deletion tests/test_preprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
import lxml.etree as ET
from difflib import context_diff
from sastadev.treebankfunctions import getstree, getyield, indextransform, getyieldstr
from alpinoparsing import parse # type: ignore
from sastadev.alpinoparsing import parse
from mwe_query.lcat import expandnonheadwords


# DONE
Expand Down

0 comments on commit fcdc1f5

Please sign in to comment.