Skip to content

Commit 54238f2

Browse files
author
Gerit Wagner
committed
release 0.10.0
1 parent fec5ea0 commit 54238f2

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0).
1717
### Fixed
1818
-->
1919

20+
## 0.10.0 - 2024-11-05
21+
22+
- Fix and silence pandas Future warnings
23+
- Fix linter messages
24+
- Extend evaluation table
25+
2026
## 0.9.0 - 2024-10-21
2127

2228
- Updates of dependencies and Python version

bib_dedupe/prep.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@
3737
from bib_dedupe.prep_volume import prep_volume
3838
from bib_dedupe.prep_year import prep_year
3939

40+
pd.set_option('future.no_silent_downcasting', True)
41+
4042
REQUIRED_FIELDS = [ID, ENTRYTYPE, TITLE, AUTHOR, YEAR]
4143
OPTIONAL_FIELDS = [
4244
JOURNAL,
@@ -136,7 +138,6 @@ def __general_prep(records_df: pd.DataFrame) -> pd.DataFrame:
136138
records_df[column] = (
137139
records_df[column]
138140
.replace(["#NAME?", "UNKNOWN", ""], np.nan)
139-
.infer_objects(copy=False)
140141
)
141142
if records_df[TITLE].isnull().any():
142143
verbose_print.print(

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "bib-dedupe"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
description = "Identify and merge duplicates in bibliographic records"
55
authors = ["Gerit Wagner <gerit.wagner@uni-bamberg.de>"]
66
license = "MIT"

0 commit comments

Comments
 (0)