From 89d6faa9c929ff9103d0a48e48194174a6e94686 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Fri, 22 Aug 2014 04:23:24 +0200 Subject: [PATCH] * Move en_ptb to ptb3 --- setup.py | 2 +- spacy/{en_ptb.pxd => ptb3.pxd} | 0 spacy/{en_ptb.pyx => ptb3.pyx} | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename spacy/{en_ptb.pxd => ptb3.pxd} (100%) rename spacy/{en_ptb.pyx => ptb3.pyx} (100%) diff --git a/setup.py b/setup.py index da6fb1869..8c0a3af72 100644 --- a/setup.py +++ b/setup.py @@ -48,7 +48,7 @@ exts = [ Extension("spacy.tokens", ["spacy/tokens.pyx"], language="c++", include_dirs=includes), Extension("spacy.en", ["spacy/en.pyx"], language="c++", include_dirs=includes), - Extension("spacy.en_ptb", ["spacy/en_ptb.pyx"], language="c++", include_dirs=includes), + Extension("spacy.ptb3", ["spacy/ptb3.pyx"], language="c++", include_dirs=includes), Extension("spacy.lexeme", ["spacy/lexeme.pyx"], language="c++", include_dirs=includes), Extension("spacy.spacy", ["spacy/spacy.pyx"], language="c++", include_dirs=includes), Extension("spacy.string_tools", ["spacy/string_tools.pyx"], language="c++", diff --git a/spacy/en_ptb.pxd b/spacy/ptb3.pxd similarity index 100% rename from spacy/en_ptb.pxd rename to spacy/ptb3.pxd diff --git a/spacy/en_ptb.pyx b/spacy/ptb3.pyx similarity index 100% rename from spacy/en_ptb.pyx rename to spacy/ptb3.pyx