From 82a98a79c0e75a3d0b0826ca3b5988cb414af3e3 Mon Sep 17 00:00:00 2001 From: Frost Ming Date: Sun, 25 Apr 2021 18:11:39 +0800 Subject: [PATCH] Update README.md --- .github/workflows/ci.yml | 4 +--- README.md | 3 ++- 2 files changed, 3 insertions(+), 4 deletions(-) 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. ... ```