Skip to content

Commit

Permalink
fix more naming
Browse files Browse the repository at this point in the history
  • Loading branch information
bdpedigo committed Dec 2, 2020
1 parent 9aeb03e commit 9456e93
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ clean-pyc:
find . -name '*~' -exec rm -f {} +

lint:
flake8 sparse_matrix_analysis test
flake8 sparse_decomposition test

test:
py.test
Expand All @@ -33,15 +33,15 @@ test-all:
tox

coverage:
coverage run --source sparse_matrix_analysis setup.py test
coverage run --source sparse_decomposition setup.py test
coverage report -m
coverage html
open htmlcov/index.html

docs:
rm -f docs/sparse_matrix_analysis.rst
rm -f docs/sparse_decomposition.rst
rm -f docs/modules.rst
sphinx-apidoc -o docs/ sparse_matrix_analysis
sphinx-apidoc -o docs/ sparse_decomposition
$(MAKE) -C docs clean
$(MAKE) -C docs html
open docs/_build/html/index.html
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@
latex_documents = [
(
"index",
"sparse_matrix_analysis.tex",
"sparse_decomposition.tex",
u"Sparse Decomposition Documentation",
u"Benjamin Pedigo",
"manual",
Expand Down
8 changes: 4 additions & 4 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ Installation

At the command line either via easy_install or pip::

$ easy_install sparse_matrix_analysis
$ pip install sparse_matrix_analysis
$ easy_install sparse_decomposition
$ pip install sparse_decomposition

Or, if you have virtualenvwrapper installed::

$ mkvirtualenv sparse_matrix_analysis
$ pip install sparse_matrix_analysis
$ mkvirtualenv sparse_decomposition
$ pip install sparse_decomposition

0 comments on commit 9456e93

Please sign in to comment.