diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index feada79..142722a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,9 +17,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies - run: pdm install -d -v - env: - LD_PRELOAD: /lib/x86_64-linux-gnu/libgcc_s.so.1 + run: pdm install -v - name: Verify python version run: python test.py diff --git a/README.md b/README.md index b27398a..040741e 100644 --- a/README.md +++ b/README.md @@ -21,8 +21,9 @@ steps: architecture: x64 # The target architecture (x86, x64) of the Python interpreter. the same as actions/setup-python version: 1.4.0 # The version of PDM to install. Leave it as empty to use the latest version from PyPI prerelease: true # Allow prerelease versions to be installed + enable-pep582: true # Enable PEP 582 package loading globally - name: Install dependencies - run: pdm install -d # Then you can use pdm in the following steps. + run: pdm install # Then you can use pdm in the following steps. ... ```