From 59f65e796cf53b0e0d90361b7730e90efe893edc Mon Sep 17 00:00:00 2001 From: Michael Wayne Goodman Date: Fri, 1 Nov 2024 20:55:50 -0700 Subject: [PATCH] Fix #213 Remove reverse of pertainym and also --- CHANGELOG.md | 7 +++++++ wn/constants.py | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 88bff48..ef2d3da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## [Unreleased][unreleased] +## Fixed + +* Follow redirects with `httpx.Client` in `wn._download` ([#211]) +* Remove reverse relations for `pertainym` and `also` ([#213]) + ## [v0.10.0] @@ -673,3 +678,5 @@ abandoned, but this is an entirely new codebase. [#202]: https://github.com/goodmami/wn/issues/202 [#203]: https://github.com/goodmami/wn/issues/203 [#207]: https://github.com/goodmami/wn/issues/207 +[#211]: https://github.com/goodmami/wn/issues/211 +[#213]: https://github.com/goodmami/wn/issues/213 diff --git a/wn/constants.py b/wn/constants.py index d5dbcc1..17fe6ee 100644 --- a/wn/constants.py +++ b/wn/constants.py @@ -152,7 +152,7 @@ 'holo_portion': 'mero_portion', 'mero_substance': 'holo_substance', 'holo_substance': 'mero_substance', - 'also': 'also', + # 'also': '', 'state_of': 'be_in_state', 'be_in_state': 'state_of', 'causes': 'is_caused_by', @@ -203,7 +203,7 @@ 'co_instrument_patient': 'co_patient_instrument', 'co_result_instrument': 'co_instrument_result', 'co_instrument_result': 'co_result_instrument', - 'pertainym': 'pertainym', + # 'pertainym': '', 'derivation': 'derivation', 'simple_aspect_ip': 'simple_aspect_pi', 'simple_aspect_pi': 'simple_aspect_ip',