Skip to content

Commit faad83c

Browse files
authored
Merge pull request #136 from fverdugo/partitioned_solvers
Misc improvements Partitioned solvers package metadata
2 parents 2e5f69f + 0c7b2bd commit faad83c

File tree

10 files changed

+23
-3
lines changed

10 files changed

+23
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: CI
22
on:
33
push:
44
branches:
5-
- main
5+
- master
66
tags: '*'
77
pull_request:
88
concurrency:
@@ -58,7 +58,7 @@ jobs:
5858
- uses: julia-actions/cache@v1
5959
- uses: julia-actions/julia-buildpkg@v1
6060
- run: |
61-
julia --project=extensions/PartitionedSolvers -e '
61+
julia --project=PartitionedSolvers -e '
6262
using Pkg
6363
Pkg.develop(path=".")
6464
Pkg.test("PartitionedSolvers")'
@@ -76,7 +76,7 @@ jobs:
7676
- run: |
7777
julia --project=docs -e '
7878
using Pkg
79-
Pkg.develop(path="extensions/PartitionedSolvers")'
79+
Pkg.develop(path="PartitionedSolvers")'
8080
- uses: julia-actions/julia-docdeploy@v1
8181
env:
8282
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

PartitionedSolvers/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
# Changelog
3+
4+
All notable changes to this project will be documented in this file.
5+
6+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
7+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
8+
9+
## [0.1.0] - Unreleased
10+
11+
### Added
12+
13+
- Basic smoothed aggregation algebraic multigrid preconditioner for the Laplace problem

extensions/PartitionedSolvers/Project.toml renamed to PartitionedSolvers/Project.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@ PartitionedArrays = "5a9dfac6-5c52-46f7-8278-5e2210713be9"
1010
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
1111
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
1212

13+
[compat]
14+
15+
IterativeSolvers = "0.9"
16+
PartitionedArrays = "0.4.4"
17+
SparseArrays = "1"
18+
19+
1320
[extras]
1421
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1522

File renamed without changes.

0 commit comments

Comments
 (0)