From: Oleg Broytman Date: Wed, 7 Dec 2022 14:44:19 +0000 (+0300) Subject: CI(GHActions): Set `$LD_LIBRARY_PATH` X-Git-Tag: 3.1.0.post4^0 X-Git-Url: https://git.phdru.name/?a=commitdiff_plain;h=a8c62643109b7d1351cb066730b88965fb3ad843;hp=a652a0e72fbc7a5d4ca2233a28adf28eb76ea72b;p=mimedecode.git CI(GHActions): Set `$LD_LIBRARY_PATH` Python 2.7 on Linux requires `$LD_LIBRARY_PATH`. --- 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"