From 01bfcf5417f79b08c4763b668be248909f0d0f0d Mon Sep 17 00:00:00 2001 From: Remi-Andre Olsen Date: Thu, 2 Nov 2023 16:51:17 +0100 Subject: [PATCH] Revert to latest version of levenshtein --- environment.yml | 2 +- setup.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/environment.yml b/environment.yml index e50bc01..f695b3d 100644 --- a/environment.yml +++ b/environment.yml @@ -4,7 +4,7 @@ channels: - bioconda dependencies: - conda-forge::biopython=1.79 - - conda-forge::python-levenshtein=0.12.1 + - conda-forge::python-levenshtein=0.23.0 - conda-forge::numpy=1.22.0 - bioconda::minimap2=2.20 - conda-forge::pyyaml=6.0 diff --git a/setup.py b/setup.py index 61e2835..72b5591 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,6 @@ conda install -c bioconda anglerfish """ from setuptools import setup, find_packages -import sys, os from pathlib import Path this_directory = Path(__file__).parent long_description = (this_directory / "README.md").read_text() @@ -32,7 +31,7 @@ packages = find_packages(), package_data = {"":["config/adaptors.yaml"]}, install_requires=[ - 'python-levenshtein==0.12.1', + 'python-levenshtein==0.23.0', 'biopython==1.79', 'numpy==1.22.0', 'pyyaml==6.0'