Skip to content

Commit

Permalink
Fix setup.py reference (#759)
Browse files Browse the repository at this point in the history
  • Loading branch information
kp992 authored Jan 23, 2025
1 parent bcf0bde commit 83a893d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ srcclean:

myhtml:
make srcclean
cd .. && python setup.py install && cd docs
cd .. && pip install . && cd docs
python qe_apidoc.py
make html

Expand Down
4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ In order to generate the documentation, follow these steps:
1. Install the `quantecon` python library locally. Do to this enter the commands below:
```
cd ..
python setup.py install
pip install .
cd docs
```
2. From this directory, execute the local file `qe_apidoc.py` (for an explanation of what the file does, see the module level docstring in the file)
Expand All @@ -50,7 +50,7 @@ srcclean:
myhtml:
make srcclean
cd .. && python setup.py install && cd docs
cd .. && pip install . && cd docs
python qe_apidoc.py
make html
```
Expand Down

0 comments on commit 83a893d

Please sign in to comment.