Skip to content

Commit 841496e

Browse files
Update to net10
1 parent 29f86d2 commit 841496e

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

.github/workflows/research-regression-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
# install dependencies
3131
pip3 install papermill==2.4.0 clr-loader==0.1.6
3232
# install kernel
33-
dotnet tool install --global Microsoft.dotnet-interactive --version 1.0.607001
33+
dotnet tool install --global Microsoft.dotnet-interactive --version 1.0.661703
3434
# Add dotnet tools to Path
3535
export PATH="$HOME/.dotnet/tools:$PATH"
3636
# activate kernel for jupyter

Common/Util/Composer.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,10 @@ private void LoadPartsSafely(IEnumerable<string> files)
386386
}
387387
catch (Exception ex)
388388
{
389-
Log.Trace($"Composer.LoadPartsSafely({file}): Skipping {ex.GetType().Name}: {ex.Message}");
389+
if (!file.Contains("quickfix.fix", StringComparison.InvariantCultureIgnoreCase))
390+
{
391+
Log.Trace($"Composer.LoadPartsSafely({file}): Skipping {ex.GetType().Name}: {ex.Message}");
392+
}
390393
}
391394
});
392395

DockerfileJupyter

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN pip install --no-cache-dir clr-loader==0.1.6
2626

2727
# Install .NET Interactive to support C# in Jupyter notebooks
2828
ENV PATH="${PATH}:/root/.dotnet/tools"
29-
RUN dotnet tool install -g --no-cache --version 1.0.607001 --add-source "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" Microsoft.dotnet-interactive && \
29+
RUN dotnet tool install -g --no-cache --version 1.0.661703 --add-source "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" Microsoft.dotnet-interactive && \
3030
dotnet interactive jupyter install
3131

3232
# Setting some environment variables

DockerfileLeanFoundation

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,4 +416,4 @@ RUN add-apt-repository ppa:dotnet/backports && apt-get update && apt-get install
416416
# label definitions
417417
LABEL strict_python_version=3.11.11
418418
LABEL python_version=3.11
419-
LABEL target_framework=net9.0
419+
LABEL target_framework=net10.0

DockerfileLeanFoundationARM

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,4 +274,4 @@ ENV DOTNET_ROOT="/root/.dotnet"
274274
# label definitions
275275
LABEL strict_python_version=3.11.11
276276
LABEL python_version=3.11
277-
LABEL target_framework=net9.0
277+
LABEL target_framework=net10.0

0 commit comments

Comments
 (0)