maintenance: update project version to 1.39.0
Some checks failed
Tests / test (push) Failing after 25s

maintenance: use venv for test execution
docs: update changelog with release notes
This commit is contained in:
retoor 2025-11-08 03:29:21 +01:00
parent 4855b38306
commit 3d7bb39504
3 changed files with 12 additions and 4 deletions

View File

@ -18,12 +18,12 @@ jobs:
. venv/bin/activate . venv/bin/activate
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip venv/bin/python3 -m pip install --upgrade pip
pip install -e ".[dev]" venv/bin/python3 -m pip install -e ".[dev]"
- name: Run tests with pytest - name: Run tests with pytest
run: | 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 - name: Upload coverage to Codecov
uses: codecov/codecov-action@v4 uses: codecov/codecov-action@v4

View File

@ -34,6 +34,14 @@
## Version 1.38.0 - 2025-11-08
Automated tests have been added to improve code quality. The project version has been updated to 1.38.0, and release notes are documented in the changelog.
**Changes:** 3 files, 14 lines
**Languages:** Markdown (8 lines), TOML (2 lines), YAML (4 lines)
## Version 1.37.0 - 2025-11-08 ## Version 1.37.0 - 2025-11-08

View File

@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "rp" name = "rp"
version = "1.37.0" version = "1.38.0"
description = "R python edition. The ultimate autonomous AI CLI." description = "R python edition. The ultimate autonomous AI CLI."
readme = "README.md" readme = "README.md"
requires-python = ">=3.10" requires-python = ">=3.10"