Skip to content

Commit

Permalink
address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonDanisch committed Sep 29, 2022
1 parent 7b80055 commit c045286
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 38 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "MiniQhull"
uuid = "978d7f02-9e05-4691-894f-ae31a51d76ca"
authors = ["Francesc Verdugo <[email protected]>", "Victor Sande <[email protected]>"]
version = "0.3.1"
version = "0.4.0"

[deps]
QhullMiniWrapper_jll = "460c41e3-6112-5d7f-b78c-b6823adb3f2d"
Expand Down
41 changes: 4 additions & 37 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,46 +80,13 @@ connectivity = delaunay(pts, flags)

## Installation

`MiniQhull` is a registered Julia package. If your system fulfills all the requirements (see below), `MiniQhull` can be installed using the command:
`MiniQhull` is a registered Julia package. `MiniQhull` can be installed using the command:

```
pkg> add MiniQhull
```

If, for any reason, you need to manually build the project, write down the following commands in the Julia REPL:
```
pkg> add MiniQhull
pkg> build MiniQhull
```

### Requirements

The `MiniQhull` package requires the [Qhull](http://www.qhull.org/) provided by Qhull_jll


#### Qhull installation
`MiniQhull` depends two binary dependencies which are build for all Platforms by [BinaryBuilder](https://binarybuilder.org/):

##### From Sources

Custom installation of `Qhull` can be performed as described in the official [Qhull installation instructions](http://www.qhull.org/README.txt).
You can find the latest source code in the oficial [Qhull download section](http://www.qhull.org/download/).

## Continuous integration

In order to use `MiniQhull` in continuous integration jobs, you must ensure that its installation requirements are fullfilled in the CI environment.

For `julia < 1.3` jobs, if your CI process is based on `Travis-CI` you can add the following block at the beginning of your `.travis.yml` file:

```
os:
- linux
dist:
- bionic
addons:
apt:
update: true
packages:
- gcc
- libqhull-r7
- libqhull-dev
```
- [Qhull_jll](https://github.com/JuliaBinaryWrappers/Qhull_jll.jl)
- [QhullMiniWrapper_jll](https://github.com/JuliaBinaryWrappers/QhullMiniWrapper_jll.jl)

0 comments on commit c045286

Please sign in to comment.