Skip to content

Commit

Permalink
Update to Makie 0.15.2 and AbstractGPs 0.4 and 0.5 (#33)
Browse files Browse the repository at this point in the history
* Update to Makie 0.15 and AbstractGPs 0.4 and 0.5

* Fix format

* Reduce CI
  • Loading branch information
devmotion committed Aug 26, 2021
1 parent bebc12c commit 2b57c22
Show file tree
Hide file tree
Showing 9 changed files with 221 additions and 135 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ jobs:
- 'nightly'
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64
include:
- version: '1'
os: ubuntu-latest
os: macOS-latest
arch: x64
- version: '1'
os: windows-latest
arch: x64
coverage: true
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
Expand All @@ -47,14 +47,16 @@ jobs:
${{ runner.os }}-
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
with:
coverage: ${{ matrix.version == '1' && matrix.os == 'ubuntu-latest' }}
- uses: julia-actions/julia-processcoverage@v1
if: matrix.coverage
if: matrix.version == '1' && matrix.os == 'ubuntu-latest'
- uses: codecov/codecov-action@v1
if: matrix.coverage
if: matrix.version == '1' && matrix.os == 'ubuntu-latest'
with:
file: lcov.info
- uses: coverallsapp/github-action@master
if: matrix.coverage
if: matrix.version == '1' && matrix.os == 'ubuntu-latest'
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./lcov.info
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name = "AbstractGPsMakie"
uuid = "7834405d-1089-4985-bd30-732a30b92057"
authors = ["David Widmann"]
version = "0.2.1"
version = "0.2.2"

[deps]
AbstractGPs = "99985d1d-32ba-4be9-9821-2ec096f28918"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Makie = "ee78f7c6-11fb-53f2-987a-cfe4a2b5a57a"

[compat]
AbstractGPs = "0.3"
Makie = "0.13, 0.14"
AbstractGPs = "0.3, 0.4, 0.5"
Makie = "0.15.2"
julia = "1.3"
Loading

2 comments on commit 2b57c22

@devmotion
Copy link
Member Author

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/43621

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 the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.2 -m "<description of version>" 2b57c225b792ac115ad2095d3158169e938dc9c1
git push origin v0.2.2

Please sign in to comment.