Skip to content

Commit 2e2c12d

Browse files
authored
Merge pull request #48 from JuliaConstraints/dev
Compat and CI updates: new release
2 parents 56fe4c8 + ccf3d43 commit 2e2c12d

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
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 }}

Project.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "Constraints"
22
uuid = "30f324ab-b02d-43f0-b619-e131c61659f7"
33
authors = ["Jean-François Baffier"]
4-
version = "0.5.5"
4+
version = "0.5.6"
55

66
[deps]
77
CompositionalNetworks = "4b67e4b5-442d-4ef5-b760-3f5df3a57537"
@@ -11,7 +11,6 @@ DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
1111
Dictionaries = "85a47980-9c8c-11e8-2b9f-f7ca1fa99fb4"
1212
MacroTools = "1914dd2f-81c6-5fcd-8719-6d5c9610ff09"
1313
PrettyTables = "08abe8d2-0d0c-5749-adfa-8a2ac140af0d"
14-
TestItemRunner = "f8b46487-2199-4994-9208-9a1283c18c0a"
1514
TestItems = "1c621080-faea-4a02-84b6-bbd5e436b8fe"
1615

1716
[compat]
@@ -22,13 +21,14 @@ DataFrames = "1"
2221
Dictionaries = "0.4"
2322
MacroTools = "0.5"
2423
PrettyTables = "2"
25-
TestItemRunner = "0.2"
26-
TestItems = "0.1"
24+
TestItemRunner = "0.2, 1"
25+
TestItems = "0.1, 1"
2726
julia = "1.8"
2827

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

3333
[targets]
34-
test = ["Aqua", "Test"]
34+
test = ["Aqua", "Test", "TestItemRunner"]

src/Constraints.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ using ConstraintDomains
77
using DataFrames
88
using Dictionaries
99
using PrettyTables
10-
using TestItemRunner
1110
using TestItems
1211

1312
import ConstraintCommons: extract_parameters, USUAL_CONSTRAINT_PARAMETERS

0 commit comments

Comments
 (0)