We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d55dd81 + 7b892c8 commit ea925e8Copy full SHA for ea925e8
.github/workflows/ci.yaml
@@ -40,7 +40,7 @@ jobs:
40
- name: Install dependencies
41
run: |
42
python -m pip install --upgrade pip
43
- pip install -e ".[lint]"
+ pip install -e ".[dev]"
44
- name: Lint with pysen
45
46
pysen run lint
setup.py
@@ -277,7 +277,6 @@ def run(self):
277
cmdclass=cmdclass,
278
install_requires=[
279
"numpy >= 1.20.0",
280
- "cython >= " + min_cython_ver + ",<3.0.0",
281
"six",
282
"tqdm",
283
],
@@ -291,7 +290,8 @@ def run(self):
291
290
"ipython",
292
"jupyter",
293
294
- "lint": [
+ "dev": [
+ "cython >= " + min_cython_ver + ",<3.0.0",
295
"pysen",
296
"types-setuptools",
297
"mypy<=0.910",
0 commit comments