Skip to content

Commit

Permalink
fix datahint and setup typo
Browse files Browse the repository at this point in the history
  • Loading branch information
HLasse committed Aug 9, 2021
1 parent f0ed4d2 commit ce36172
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
spacy>=3.0.3
spacy>=3.1.0
numpy>=1.20.0
pandas>=1.0.0
pyphen>=0.11.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Text Processing",
"Topic :: NLP"
"Topic :: NLP",
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
"Programming Language :: Python :: 3.7",
Expand Down
2 changes: 1 addition & 1 deletion textdescriptives/dataframe_extract.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def __dependency_distance(self, doc: Doc) -> pd.DataFrame:


def extract_df(
doc: Doc, metrics: Union[list[str], str] = "all", include_text: bool = True
doc: Doc, metrics: Union[List[str], str] = "all", include_text: bool = True
) -> pd.DataFrame:
"""Extract calculated metrics from a spaCy Doc object or a generator of Docs from
nlp.pipe to a Pandas DataFrame
Expand Down

1 comment on commit ce36172

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage

Coverage Report
FileStmtsMissCoverMissing
textdescriptives
   init.py40100% 
   about.py30100% 
   dataframe_extract.py500100% 
   load_components.py120100% 
textdescriptives/components
   init.py30100% 
   dependency_distance.py320100% 
   descriptive_stats.py51198%105
   readability.py720100% 
   utils.py160100% 
TOTAL243199% 

Please sign in to comment.