Skip to content

Commit

Permalink
no more checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Apr 26, 2018
1 parent 1f3fb8d commit bf9840a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ Then open up Julia and run the commands:

```julia
Pkg.add("DiffEqPy")
Pkg.checkout("PyCall") # https://github.com/JuliaPy/PyCall.jl/issues/496
using DiffEqPy # Precompile the libraries
```

Expand Down Expand Up @@ -443,12 +442,12 @@ This is why declaring discontinuities can enhance the solver accuracy.

## Known Limitations

- Autodiff does not work on Python functions. When applicable, either define the derivative function
- Autodiff does not work on Python functions. When applicable, either define the derivative function
as a Julia function or set the algorithm to use finite differencing, i.e. `Rodas5(autodiff=false)`.
All default methods use autodiff.
- Delay differential equations have to use Julia-defined functions otherwise the history function is
not appropriately typed with the overloads.

## Testing

Unit tests can be run by [`tox`](http://tox.readthedocs.io).
Expand Down
1 change: 0 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ deps =
commands =
julia --color=yes -e 'Pkg.init()'
julia --startup-file=no --color=yes -e 'Pkg.add("DiffEqPy")'
julia --startup-file=no --color=yes -e 'Pkg.checkout("PyCall")'
julia --startup-file=no --color=yes -e 'using DiffEqPy'
py.test \
--pyargs diffeqpy \
Expand Down

0 comments on commit bf9840a

Please sign in to comment.