From 11d536c8ae711f85223c0178813950c432fc4131 Mon Sep 17 00:00:00 2001 From: taylor-a-barnes Date: Tue, 25 Jul 2023 14:00:45 -0400 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c5b845f..37f2343 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -166,9 +166,9 @@ jobs: run: | source env.source echo "Python implementation: " - python -c "import platform; platform.python_implementation()" + python -c "import platform; print(platform.python_implementation())" echo "Python3 implementation: " - python3 -c "import platform; platform.python_implementation()" + python3 -c "import platform; print(platform.python_implementation())" - name: Install MDI Library Python package run: | @@ -445,7 +445,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-python@v4 with: - python-version: 'pypy3.9' + python-version: '3.10' - name: Create source file with all required environment variables run: | @@ -485,9 +485,9 @@ jobs: run: | source env.source echo "Python implementation: " - python -c "import platform; platform.python_implementation()" + python -c "import platform; print(platform.python_implementation())" echo "Python3 implementation: " - python3 -c "import platform; platform.python_implementation()" + python3 -c "import platform; print(platform.python_implementation())" - name: Install MDI Library Python package run: |