Skip to content

Commit

Permalink
yaml update
Browse files Browse the repository at this point in the history
  • Loading branch information
pszufe committed Mar 5, 2020
1 parent b9b3f84 commit 1723d25
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ os:
- linux

julia:
- 1.0
- 1.3


notifications:
Expand All @@ -22,7 +22,7 @@ after_success:
jobs:
include:
- stage: "Documentation"
julia: 1.0
julia: 1.3
os: linux
script:
- julia --project=docs/ -e 'using Pkg; Pkg.instantiate();
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# OpenStreetMapX.jl

* Package for spatial analysis, simulation and vizualization of Open Street Map data
* Package for spatial analysis, simulation and visualization of Open Street Map data
* The plotting functionality is provided via a separate package [`OpenStreetMapXPlot.jl`](https://github.com/pszufe/OpenStreetMapXPlot.jl)

The goal of this package is to provide a backbone for multi-agent simulation of cities.
Expand Down Expand Up @@ -30,7 +30,7 @@ The goal of this package is to provide a backbone for multi-agent simulation of

## Installation

The current version uses at least Julia 1.0.5 and is known to work up to Julia 1.3.1
The current version uses at least Julia 1.3. However older versions will work with Julia 1.0.

```julia
using Pkg; Pkg.add("OpenStreetMapX.jl")
Expand All @@ -45,7 +45,7 @@ In order to plot the maps we recommend two tools:

- rendering the maps yourself with PyPlot or Plots.jl with backend - use the [`OpenStreetMapXPlot.jl`](https://github.com/pszufe/OpenStreetMapXPlot.jl) package
- rendering the maps with Leaflet.jl - use the Python folium package (examples can be found in the [tutorial](https://pszufe.github.io/OpenStreetMapX_Tutorial/) and the [manual](https://pszufe.github.io/OpenStreetMapX.jl/stable))

In order to install all plotting backends please run the commands below:
```julia
using Pkg
Expand All @@ -56,7 +56,7 @@ pkg"add Conda"
using Conda
Conda.runconda(`install folium -c conda-forge`)
```


## Usage

Expand Down

2 comments on commit 1723d25

@pszufe
Copy link
Owner Author

@pszufe pszufe commented on 1723d25 Mar 5, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/10544

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.12 -m "<description of version>" 1723d258ad3fda450a3069640bd143a49e055373
git push origin v0.1.12

Please sign in to comment.