Update README.md

This commit is contained in:
Frost Ming 2021-04-25 18:11:39 +08:00
parent fa9dec1775
commit 82a98a79c0
No known key found for this signature in database
GPG Key ID: 5BFA9CB4DDA943BF
2 changed files with 3 additions and 4 deletions

View File

@ -17,9 +17,7 @@ jobs:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Install dependencies - name: Install dependencies
run: pdm install -d -v run: pdm install -v
env:
LD_PRELOAD: /lib/x86_64-linux-gnu/libgcc_s.so.1
- name: Verify python version - name: Verify python version
run: python test.py run: python test.py

View File

@ -21,8 +21,9 @@ steps:
architecture: x64 # The target architecture (x86, x64) of the Python interpreter. the same as actions/setup-python 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 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 prerelease: true # Allow prerelease versions to be installed
enable-pep582: true # Enable PEP 582 package loading globally
- name: Install dependencies - 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.
... ...
``` ```