Skip to content

Commit

Permalink
updated compat for IntervalArithmetic (#107)
Browse files Browse the repository at this point in the history
* updated compat for IntervalArithmetic

* updated compat entries and added compathelper
  • Loading branch information
lucaferranti authored May 1, 2021
1 parent f2f6597 commit 6c65147
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 5 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/CompactHelper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: CompatHelper
on:
schedule:
- cron: 0 0 * * *
workflow_dispatch:
jobs:
CompatHelper:
runs-on: ubuntu-latest
steps:
- name: Pkg.add("CompatHelper")
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
- name: CompatHelper.main()
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: julia -e 'using CompatHelper; CompatHelper.main()'
10 changes: 5 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "TaylorModels"
uuid = "314ce334-5f6e-57ae-acf6-00b6e903104a"
repo = "https://github.com/JuliaIntervals/TaylorModels.jl.git"
version = "0.3.8"
version = "0.3.9"

[deps]
IntervalArithmetic = "d1acc4aa-44c8-5952-acd4-ba5d80a2a253"
Expand All @@ -14,13 +14,13 @@ TaylorIntegration = "92b13dbe-c966-51a2-8445-caca9f8a7d42"
TaylorSeries = "6aa5eb33-94cf-58f4-a9d0-e4b2c4fc25ea"

[compat]
IntervalArithmetic = "0.16, 0.17"
IntervalRootFinding = "0.5.1"
IntervalArithmetic = "0.16, 0.17, 0.18"
IntervalRootFinding = "0.5"
RecipesBase = "0.8, 1.0"
Reexport = "0.2, 1.0"
TaylorIntegration = "0.7, 0.8"
TaylorSeries = "0.10"
julia = "1.3, 1.4, 1.5"
TaylorSeries = "0.10, 0.11"
julia = "1.3, 1.4, 1.5, 1.6"

[extras]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Expand Down

2 comments on commit 6c65147

@lbenet
Copy link
Member

@lbenet lbenet commented on 6c65147 May 1, 2021

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

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.3.9 -m "<description of version>" 6c65147db9611b7e07f98011f5fe27a23fe359eb
git push origin v0.3.9

Please sign in to comment.