From a8c62643109b7d1351cb066730b88965fb3ad843 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Wed, 7 Dec 2022 17:44:19 +0300 Subject: [PATCH] CI(GHActions): Set `$LD_LIBRARY_PATH` Python 2.7 on Linux requires `$LD_LIBRARY_PATH`. --- .github/workflows/run-tests.yaml | 8 +++++++- mimedecode/__version__.py | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index 7577e27..dec98d8 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -43,16 +43,22 @@ jobs: - name: Set TOXENV run: | import os, sys + ld_library_path = None if hasattr(sys, 'pypy_version_info'): toxenv = 'pypy3' else: pyver = '%d%d' % tuple(sys.version_info[:2]) + if os.name == 'posix': + if pyver == '27': # Python 2.7 on Linux requires `$LD_LIBRARY_PATH` + ld_library_path = os.path.join( + os.path.dirname(os.path.dirname(sys.executable)), 'lib') toxenv = 'py%s' % pyver with open(os.environ['GITHUB_ENV'], 'a') as f: + if ld_library_path: + f.write('LD_LIBRARY_PATH=' + ld_library_path + '\n') f.write('TOXENV=' + toxenv + '\n') shell: python - - name: Run tox targets for ${{ matrix.python-version }} run: | python -c "import os; print(os.environ['TOXENV'])" diff --git a/mimedecode/__version__.py b/mimedecode/__version__.py index 38edecc..0f08554 100644 --- a/mimedecode/__version__.py +++ b/mimedecode/__version__.py @@ -1,4 +1,4 @@ -__version__ = "3.1.0.post3" +__version__ = "3.1.0.post4" __author__ = "Oleg Broytman " __copyright__ = "Copyright (C) 2001-2022 PhiloSoft Design" __license__ = "GNU GPL" -- 2.39.2