chore: bump project version to 1.39.0 and switch test execution to venv

- Update version string in setup.cfg from 1.38.0 to 1.39.0
- Replace direct pytest invocation with venv-based test runner in CI config
- Add release notes for version 1.39.0 to CHANGELOG.md
This commit is contained in:
2025-11-08 02:29:21 +00:00
parent 9720d0f965
commit fb55ea0539
3 changed files with 12 additions and 4 deletions
+3 -3
View File
@@ -18,12 +18,12 @@ jobs:
. venv/bin/activate
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
venv/bin/python3 -m pip install --upgrade pip
venv/bin/python3 -m pip install -e ".[dev]"
- name: Run tests with pytest
run: |
pytest --cov=pr --cov-report=xml --cov-report=term-missing
venv/bin/pytest --cov=pr --cov-report=xml --cov-report=term-missing
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4