Skip to content

Commit

Permalink
Compat ci (#17)
Browse files Browse the repository at this point in the history
* Cleaning and CI updates (#13) (#14)

* Cleaning and CI updates

* Fix CI for Julia 1.8

* Compat and CI
  • Loading branch information
Azzaare authored Jul 12, 2024
1 parent c9f357a commit ffe2ee1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
version:
- "1.8"
- "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 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
10 changes: 5 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ConstraintLearning"
uuid = "4bd09668-9077-4be7-adc9-6307a490e6df"
authors = ["azzaare <[email protected]> and contributors"]
version = "0.1.7"
version = "0.1.8"

[deps]
CompositionalNetworks = "4b67e4b5-442d-4ef5-b760-3f5df3a57537"
Expand All @@ -15,7 +15,6 @@ LocalSearchSolvers = "2b10edaa-728d-4283-ac71-07e312d6ccf3"
Memoization = "6fafb56a-5788-4b4e-91ca-c0cea6611c73"
PrettyTables = "08abe8d2-0d0c-5749-adfa-8a2ac140af0d"
QUBOConstraints = "110b7fcc-6942-4061-a625-86e03d1de7cf"
TestItemRunner = "f8b46487-2199-4994-9208-9a1283c18c0a"
TestItems = "1c621080-faea-4a02-84b6-bbd5e436b8fe"
ThreadPools = "b189fb0b-2eb5-4ed4-bc0c-d34c51242431"

Expand All @@ -31,14 +30,15 @@ LocalSearchSolvers = "0.4"
Memoization = "0.2"
PrettyTables = "2"
QUBOConstraints = "0.2"
TestItemRunner = "0.2"
TestItems = "0.1"
TestItemRunner = "0.2, 1"
TestItems = "0.1, 1"
ThreadPools = "2"
julia = "1.8"

[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"]
1 change: 0 additions & 1 deletion src/ConstraintLearning.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ using CompositionalNetworks
using Dictionaries
using Evolutionary
using Memoization
using TestItemRunner
using TestItems
using ThreadPools

Expand Down

0 comments on commit ffe2ee1

Please sign in to comment.