From d1c513485587a3023e9323fa899f6a1540362d6d Mon Sep 17 00:00:00 2001 From: Kwan-Yuet Ho Date: Fri, 13 Dec 2024 23:20:12 -0500 Subject: [PATCH] further remove cython stuff --- .circleci/config.yml | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a8dd3a1..6ace61c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,8 +25,8 @@ shared: &shared - run: name: Run Unit Tests command: | - pip install --upgrade --user .[test] - pytest --doctest-cython + pip install --user .[test] + pytest jobs: diff --git a/pyproject.toml b/pyproject.toml index d57efba..1649aeb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -82,4 +82,4 @@ ShortTextCategorizerConsole = "shorttext.cli.categorization:main" ShortTextWordEmbedSimilarity = "shorttext.cli.wordembedsim:main" [project.optional-dependencies] -test = ["unittest2", "pytest", "pytest-cython", "simplerepresentations>=0.0.4"] +test = ["unittest2", "pytest", "simplerepresentations>=0.0.4"]