Skip to content

Commit

Permalink
latest v with language level 2
Browse files Browse the repository at this point in the history
  • Loading branch information
jykr committed Jun 19, 2024
1 parent 9d26b93 commit 8b97448
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '==3.12.3'
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Cython==3.0.10
numpy<2
numpy==2.0.0
pandas
scipy
perturb-tools>=0.2.5
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
url="https://github.com/pinellolab/crispr-bean",
packages=find_namespace_packages(),
ext_modules=cythonize(
["bean/mapping/CRISPResso2Align.pyx"]}
["bean/mapping/CRISPResso2Align.pyx"], compiler_directives={"language_level": 2}
),
include_dirs=np.get_include(),
setup_requires=[
Expand Down

0 comments on commit 8b97448

Please sign in to comment.