Skip to content

Commit f958edf

Browse files
committed
removed install requires as per recomendation
1 parent 9a7d289 commit f958edf

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.github/workflows/pytest.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ jobs:
2727
run: |
2828
python -m pip install --upgrade pip
2929
python -m pip install flake8 pytest
30-
python -m pip install .
30+
python -m pip install jinja2>=2.10.3 py2neo>=2020.0.0 IPython
31+
3132
- name: Lint with flake8
3233
run: |
3334
# stop the build if there are Python syntax errors or undefined names

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ flask>=1.1.1
22
jinja2>=2.10.3
33
waitress==2.1.1
44
py2neo>=2020.0.0
5+
IPython

setup.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,5 @@
1616
url="https://github.com/icfly2/neographviz",
1717
packages=["neographviz"],
1818
package_data={"neographviz": ["templates/*.html"]},
19-
install_requires=[
20-
"py2neo>=2020.0.0",
21-
"IPython",
22-
"jinja2",
23-
],
2419
extras_require={"app": ["waitress==2.1.1", "flask>=1.1.1"]},
2520
)

0 commit comments

Comments
 (0)