From 9d26b9306e561b7da0d0f87dc92ee31d8cb05e12 Mon Sep 17 00:00:00 2001 From: Jayoung Ryu Date: Wed, 19 Jun 2024 11:47:13 -0400 Subject: [PATCH] freeze versions --- .github/workflows/CI.yml | 2 +- requirements.txt | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index e397a00..c56617c 100755 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -23,7 +23,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v3 with: - python-version: '<3.12.4' + python-version: '==3.12.3' - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/requirements.txt b/requirements.txt index d9d89d1..199c314 100755 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ Cython==3.0.10 -numpy==2.0.0 +numpy<2 pandas scipy perturb-tools>=0.2.5 diff --git a/setup.py b/setup.py index ca388aa..44bfe10 100755 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ url="https://github.com/pinellolab/crispr-bean", packages=find_namespace_packages(), ext_modules=cythonize( - ["bean/mapping/CRISPResso2Align.pyx"], compiler_directives={"language_level": 2} + ["bean/mapping/CRISPResso2Align.pyx"]} ), include_dirs=np.get_include(), setup_requires=[