Skip to content

Commit

Permalink
line spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
a-quelle committed Jan 18, 2025
1 parent ffb215d commit 76541b1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test_dependency_versions.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
#!/bin/bash

mps_string=`grep emu-base ci/emu_mps/pyproject.toml`
[[ "$mps_string" =~ .*([0-9]\.[0-9]\.[0-9]).* ]]
mps_dep=${BASH_REMATCH[1]}
echo mps depends on emu-base version $mps_dep

base_string=`grep version emu_base/__init__.py`
[[ "$base_string" =~ .*([0-9]\.[0-9]\.[0-9]).* ]]
base_version=${BASH_REMATCH[1]}
echo emu-base is version $base_version

if [[ $mps_dep == $base_version ]]
then
exit 0
Expand Down

0 comments on commit 76541b1

Please sign in to comment.