Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Julia and RecursiveArrayTools compat, remove NamedArrayPartition #159

Merged
merged 9 commits into from
Jan 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.7' # Replace this with the minimum Julia version that your package supports. E.g. if your package requires Julia 1.5 or higher, change this to '1.5'.
- '1.10' # Replace this with the minimum Julia version that your package supports. E.g. if your package requires Julia 1.5 or higher, change this to '1.5'.
- '1' # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia.
- 'nightly'
os:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: '1.7'
version: '1.10'
- name: Install dependencies
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- name: Build and deploy
Expand Down
7 changes: 4 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,17 @@ Kronecker = "0.5"
NodesAndModes = "1"
PathIntersections = "0.1"
RecipesBase = "1"
RecursiveArrayTools = "2"
RecursiveArrayTools = "3.4"
Reexport = "1"
Requires = "1"
Setfield = "1"
SimpleUnPack = "1"
SparseArrays = "1"
StaticArrays = "1"
SummationByPartsOperators = "0.5"
SummationByPartsOperators = "0.5.52"
Triangulate = "2"
WriteVTK = "1"
julia = "1.7"
julia = "1.10"

[extras]
SummationByPartsOperators = "9f78cca6-572e-554e-b819-917d2f1cf240"
5 changes: 1 addition & 4 deletions src/StartUpDG.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ using PathIntersections: PathIntersections
@reexport using PathIntersections: PresetGeometries
using Printf: @sprintf
using RecipesBase: RecipesBase
@reexport using RecursiveArrayTools: NamedArrayPartition
using StaticArrays: SVector, SMatrix
using Setfield: setproperties, @set # for "modifying" structs (setproperties)
@reexport using SimpleUnPack: @unpack
Expand Down Expand Up @@ -55,10 +56,6 @@ export make_periodic
include("boundary_utils.jl")
export boundary_face_centroids, tag_boundary_faces, tag_boundary_nodes

# helper array type for cut cell and hybrid meshes
include("named_array_partition.jl")
export NamedArrayPartition

include("hybrid_meshes.jl")
export num_faces, num_vertices, HybridMeshExample

Expand Down
117 changes: 0 additions & 117 deletions src/named_array_partition.jl

This file was deleted.

2 changes: 1 addition & 1 deletion test/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ HOHQMesh = "0.2"
Plots = "1"
StaticArrays = "1"
StructArrays = "0.6"
SummationByPartsOperators = "0.5"
SummationByPartsOperators = "0.5.52"
Suppressor = "0.2"
34 changes: 0 additions & 34 deletions test/named_array_partition_tests.jl

This file was deleted.

5 changes: 2 additions & 3 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@ using SummationByPartsOperators

using StartUpDG

include("write_vtk_tests.jl")
include("named_array_partition_tests.jl")
include("triangulate_tests.jl")
include("write_vtk_tests.jl")
include("triangulate_tests.jl")
include("reference_elem_tests.jl")
include("multidim_sbp_tests.jl")
include("SummationByPartsOperatorsExt_tests.jl")
Expand Down
Loading