Skip to content

Commit

Permalink
small changes to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
pat-alt committed Jun 15, 2024
1 parent f95a484 commit 5d47558
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 17 deletions.
15 changes: 4 additions & 11 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ jobs:
matrix:
version:
- '1.7'
- '1.8'
- '1.9'
- '1.10'
os:
- ubuntu-latest
Expand All @@ -33,9 +31,6 @@ jobs:
- os: windows-latest
version: '1.7'
arch: x64
- os: windows-latest
version: '1.8'
arch: x64
- os: windows-latest
version: '1'
arch: x64
Expand All @@ -45,9 +40,6 @@ jobs:
- os: macOS-latest
version: '1.7'
arch: x64
- os: macOS-latest
version: '1.8'
arch: x64
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
Expand All @@ -60,9 +52,10 @@ jobs:
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v2
with:
files: lcov.info
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
docs:
name: Documentation
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),

### Changed

- Updated codecov workflow in CI.yml. [#39]
- fixed test functions
- adapted the LaplaceClassification and the LaplaceRegression struct to use the new @mlj_model macro from MLJBase.
- Changed the fit! method arguments.
Expand All @@ -20,13 +21,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
- Removed the shape, build and clean! functions.
- Removed Review dog for code format suggestions. [#39]


## Version [0.2.3] - 2024-05-31

### Changed

- Removed the link_approx parameter in LaplaceRegression since it is not required.
- Changed MMI.clean! to check the value of link_approx only in the case likelihood is set to :classification
- Changed MMI.clean! to check the value of link_approx only in the case likelihood is set to `:classification`
- Now the likelihood type in LaplaceClassification and LaplaceRegression is automatically set by the inner constructor. The user is not required to provide it as a parameter anymore.


Expand Down
8 changes: 4 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,19 @@ Compat = "4.7.0"
ComputationalResources = "0.3.2"
Distributions = "0.25.109"
Flux = "0.12, 0.13, 0.14"
LinearAlgebra = "1.6, 1.7, 1.8, 1.9, 1.10"
LinearAlgebra = "1.7, 1.10"
MLJBase = "0, 1.4.0"
MLJFlux = "0.2.10, 0.3, 0.4"
MLJModelInterface = "1.8.0"
MLUtils = "0.4.3"
ProgressMeter = "1.7.2"
Random = "1.6, 1.7, 1.8, 1.9, 1.10"
Random = "1.7, 1.10"
Statistics = "1"
Tables = "1.10.1"
Test = "1.6, 1.7, 1.8, 1.9, 1.10"
Test = "1.7, 1.10"
Tullio = "0.3.5"
Zygote = "0.6"
julia = "1.6, 1.7, 1.8, 1.9, 1.10"
julia = "1.7, 1.10"

[extras]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
Expand Down

0 comments on commit 5d47558

Please sign in to comment.