Skip to content

Commit

Permalink
Test and fix compat lower bounds (#65)
Browse files Browse the repository at this point in the history
* Automated commit made by MassInstallAction.jl

* Update .github/workflows/DowngradeCI.yml

* Update .github/workflows/DowngradeCI.yml

* Make extra lower bounds compatible

* Set correct DimensionalData lower bound

* Remove incompatible LogExpFunctions version

* Increment patch number
  • Loading branch information
sethaxen authored Feb 11, 2024
1 parent 6b17a96 commit 7fc54fc
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 5 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/DowngradeCI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: DowngradeCI
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
version: ['1']
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
- uses: cjdoris/julia-downgrade-compat-action@v1
with:
skip: LinearAlgebra,Printf,Statistics
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
10 changes: 5 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PSIS"
uuid = "ce719bf2-d5d0-4fb9-925d-10a81b42ad04"
authors = ["Seth Axen <[email protected]> and contributors"]
version = "0.9.4"
version = "0.9.5"

[deps]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Expand All @@ -11,12 +11,12 @@ RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"

[compat]
DimensionalData = "0.24"
DimensionalData = "0.24.2"
Distributions = "0.25.81"
JLD2 = "0.4"
JLD2 = "0.4.28"
LinearAlgebra = "1.6"
LogExpFunctions = "0.2.0, 0.3"
Plots = "1"
LogExpFunctions = "0.3.3"
Plots = "1.10.1"
Printf = "1.6"
RecipesBase = "1"
ReferenceTests = "0.9, 0.10"
Expand Down

2 comments on commit 7fc54fc

@sethaxen
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/100658

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

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.9.5 -m "<description of version>" 7fc54fc3219fb65cd6c677094b7e7a8ad08f70e5
git push origin v0.9.5

Please sign in to comment.