Skip to content

Commit 3102b17

Browse files
authored
Compat, CI, and Parallelism: release (#18)
* Cleaning and CI updates (#13) * Cleaning and CI updates * Fix CI for Julia 1.8 * Compat ci (#17) * Cleaning and CI updates (#13) (#14) * Cleaning and CI updates * Fix CI for Julia 1.8 * Compat and CI
1 parent aea0887 commit 3102b17

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
version:
5353
- "1.8"
5454
- "1" # automatically expands to the latest stable 1.x release of Julia
55-
- nightly
55+
- "pre"
5656
os:
5757
- ubuntu-latest
5858
arch:
@@ -71,7 +71,7 @@ jobs:
7171
version: 1
7272
steps:
7373
- uses: actions/checkout@v4
74-
- uses: julia-actions/setup-julia@v1
74+
- uses: julia-actions/setup-julia@v2
7575
with:
7676
version: ${{ matrix.version }}
7777
arch: ${{ matrix.arch }}

.github/workflows/CompatHelper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
run: which julia
1515
continue-on-error: true
1616
- name: Install Julia, but only if it is not already available in the PATH
17-
uses: julia-actions/setup-julia@v1
17+
uses: julia-actions/setup-julia@v2
1818
with:
1919
version: "1"
2020
arch: ${{ runner.arch }}

Project.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ConstraintLearning"
22
uuid = "4bd09668-9077-4be7-adc9-6307a490e6df"
33
authors = ["azzaare <jf@baffier.fr> and contributors"]
4-
version = "0.1.7"
4+
version = "0.1.8"
55

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

@@ -31,14 +30,15 @@ LocalSearchSolvers = "0.4"
3130
Memoization = "0.2"
3231
PrettyTables = "2"
3332
QUBOConstraints = "0.2"
34-
TestItemRunner = "0.2"
35-
TestItems = "0.1"
33+
TestItemRunner = "0.2, 1"
34+
TestItems = "0.1, 1"
3635
ThreadPools = "2"
3736
julia = "1.8"
3837

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

4343
[targets]
44-
test = ["Aqua", "Test"]
44+
test = ["Aqua", "Test", "TestItemRunner"]

src/ConstraintLearning.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ using CompositionalNetworks
99
using Dictionaries
1010
using Evolutionary
1111
using Memoization
12-
using TestItemRunner
1312
using TestItems
1413
using ThreadPools
1514

0 commit comments

Comments
 (0)