Skip to content

Commit

Permalink
fix: add news
Browse files Browse the repository at this point in the history
Signed-off-by: Frost Ming <me@frostming.com>
  • Loading branch information
frostming committed Sep 23, 2024
1 parent 4242ad8 commit 4c61ec5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,13 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: |
3.7
3.8
3.9
3.10
3.11
3.12
3.13
allow-prereleases: true
if: matrix.os != 'macos-latest'
- name: Setup Python Versions
uses: actions/setup-python@v5
Expand All @@ -77,6 +78,8 @@ jobs:
3.10
3.11
3.12
3.13
allow-prereleases: true
if: matrix.os == 'macos-latest'
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
Expand Down
1 change: 1 addition & 0 deletions news/3176.bugfix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Call functions from shared library in the in-process `env_spec.py` script.
2 changes: 1 addition & 1 deletion tests/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from pdm.utils import cd

PYTHON_VERSIONS = ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
PYTHON_VERSIONS = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
PYPROJECT = {
"project": {"name": "test-project", "version": "0.1.0", "requires-python": ">=3.7"},
"build-system": {"requires": ["pdm-backend"], "build-backend": "pdm.backend"},
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# https://pypi.org/project/tox-pdm/ is needed to run this tox configuration
[tox]
envlist = py3{8,9,10,11,12}
envlist = py3{8,9,10,11,12,13}
passenv = LD_PRELOAD
isolated_build = True

Expand Down

0 comments on commit 4c61ec5

Please sign in to comment.