Skip to content

Commit ea925e8

Browse files
authored
Merge pull request #61 from sabonerune/fix/install-requires-cython
ENH: Remove Cython from install_requires.
2 parents d55dd81 + 7b892c8 commit ea925e8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Install dependencies
4141
run: |
4242
python -m pip install --upgrade pip
43-
pip install -e ".[lint]"
43+
pip install -e ".[dev]"
4444
- name: Lint with pysen
4545
run: |
4646
pysen run lint

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,6 @@ def run(self):
277277
cmdclass=cmdclass,
278278
install_requires=[
279279
"numpy >= 1.20.0",
280-
"cython >= " + min_cython_ver + ",<3.0.0",
281280
"six",
282281
"tqdm",
283282
],
@@ -291,7 +290,8 @@ def run(self):
291290
"ipython",
292291
"jupyter",
293292
],
294-
"lint": [
293+
"dev": [
294+
"cython >= " + min_cython_ver + ",<3.0.0",
295295
"pysen",
296296
"types-setuptools",
297297
"mypy<=0.910",

0 commit comments

Comments
 (0)