Skip to content

Commit 2f304ac

Browse files
author
Kasper Peeters
committed
Final fix for windows workflow. Add url and copyright info to cadabra2-cli.
1 parent 195a8f1 commit 2f304ac

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ jobs:
148148
- name: Download installer
149149
uses: actions/download-artifact@v4
150150
with:
151-
name: cadabra2-windows-${{ matrix.os }}.msi
151+
name: cadabra2-windows-${{ matrix.name }}.msi
152152

153153
- name: Install silently
154154
shell: pwsh

core/cadabra2-cli.cc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,9 @@ void Shell::interact()
9797
write_stdout("Cadabra " CADABRA_VERSION_FULL " (build " CADABRA_VERSION_BUILD
9898
" dated " CADABRA_VERSION_DATE ")");
9999
write_stdout("Copyright (C) " COPYRIGHT_YEARS " Kasper Peeters <[email protected]>");
100-
write_stdout("Using SymPy version " + str(evaluate("sympy.__version__")));
100+
write_stdout("Info at https://cadabra.science/");
101+
write_stdout("Available under the terms of the GNU GPL v3.");
102+
write_stdout("Using SymPy version " + str(evaluate("sympy.__version__"))+".");
101103
}
102104

103105
// Input-output loop

0 commit comments

Comments
 (0)