Skip to content

Commit

Permalink
Compat and CI (#62)
Browse files Browse the repository at this point in the history
* Fix axis legend and compat

* CI
  • Loading branch information
Azzaare authored Jul 17, 2024
1 parent 632cc89 commit 6476e88
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
version:
- "1.9"
- "1" # automatically expands to the latest stable 1.x release of Julia
- nightly
- "pre"
os:
- ubuntu-latest
arch:
Expand All @@ -71,7 +71,7 @@ jobs:
version: 1
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
Expand All @@ -96,7 +96,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
- uses: julia-actions/setup-julia@v2
with:
version: "1"
- run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
run: which julia
continue-on-error: true
- name: Install Julia, but only if it is not already available in the PATH
uses: julia-actions/setup-julia@v1
uses: julia-actions/setup-julia@v2
with:
version: "1"
arch: ${{ runner.arch }}
Expand Down
9 changes: 4 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "KuMo"
uuid = "b681f84e-bd48-4deb-8595-d3e0ff1e4a55"
authors = ["azzaare <[email protected]> and contributors"]
version = "0.2.0"
version = "0.2.1"

[deps]
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
Expand All @@ -16,7 +16,6 @@ ProgressMeter = "92933f4c-e287-5a05-a399-4b506db050ca"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
ResizableArrays = "df514bf8-98b6-11e9-19f1-af1e340ea726"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
TestItemRunner = "f8b46487-2199-4994-9208-9a1283c18c0a"
TestItems = "1c621080-faea-4a02-84b6-bbd5e436b8fe"

[weakdeps]
Expand Down Expand Up @@ -44,13 +43,13 @@ Random = "1"
ResizableArrays = "0.3"
SparseArrays = "1"
StatsPlots = "0.15"
TestItemRunner = "0.2"
TestItems = "0.1"
TestItems = "1"
julia = "1.9"

[extras]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
TestItemRunner = "f8b46487-2199-4994-9208-9a1283c18c0a"

[targets]
test = ["Aqua", "Test"]
test = ["Aqua", "Test", "TestItemRunner"]
8 changes: 4 additions & 4 deletions ext/KuMoMakieExt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ function show_pseudo_costs(pseudo_costs, ::Val{:interactive})
ax = Axis(
fig[1, 1];
title = "Pseudo-costs sandbox",
xlabel = "Pseudo-cost",
ylabel = "Resource load",
xlabel = "Resource load",
ylabel = "Pseudo-cost",
xticks = 0:0.1:1,
yticks = 0:1:10,
xminorticksvisible = true,
Expand Down Expand Up @@ -130,8 +130,8 @@ function show_pseudo_costs(pseudo_costs, ::Val{:static})
ax = Axis(
fig[1, 1];
title = "Pseudo-costs",
xlabel = "Pseudo-cost",
ylabel = "Resource load",
xlabel = "Resource load",
ylabel = "Pseudo-cost",
xticks = 0:0.1:1,
yticks = 0:1:10,
xminorticksvisible = true,
Expand Down
1 change: 0 additions & 1 deletion src/KuMo.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ using ProgressMeter
using Random
using ResizableArrays
using SparseArrays
using TestItemRunner
using TestItems

# SECTION - imports from Base
Expand Down

0 comments on commit 6476e88

Please sign in to comment.