From cda2bd01d4aaa288857983b90d8c6976563d497b Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Mon, 19 May 2025 17:24:56 +0200 Subject: [PATCH] Fix enum population --- spacy/parts_of_speech.pyx | 1 - 1 file changed, 1 deletion(-) diff --git a/spacy/parts_of_speech.pyx b/spacy/parts_of_speech.pyx index 102d3fe3e..1e643c099 100644 --- a/spacy/parts_of_speech.pyx +++ b/spacy/parts_of_speech.pyx @@ -26,7 +26,6 @@ IDS = { NAMES = {value: key for key, value in IDS.items()} - # As of Cython 3.1, the global Python namespace no longer has the enum # contents by default. globals().update(IDS)