Skip to content

Commit a3f3f55

Browse files
bojielicursoragent
andcommitted
Fix CI: update test version assertion, correct GitHub repo URLs
- Fix test_version to assert 0.1.1 - Correct project URLs from pine-assistant-python to pine-python - Update RELEASING.md and CHANGELOG.md references Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 7247573 commit a3f3f55

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ project adheres to [Semantic Versioning](https://semver.org/).
2222
- Full type annotations with `py.typed` marker
2323
- Integration test suite
2424

25-
[0.1.0]: https://github.com/19PINE-AI/pine-assistant-python/releases/tag/v0.1.0
25+
[0.1.0]: https://github.com/19PINE-AI/pine-python/releases/tag/v0.1.0

RELEASING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This package uses **PyPI trusted publishing** (OIDC) — no PyPI tokens are stor
99
1. Go to <https://pypi.org/manage/project/pine-assistant/settings/publishing/> (or add a **pending publisher** at <https://pypi.org/manage/account/publishing/> if the project doesn't exist on PyPI yet).
1010
2. Under **Add a new publisher**, fill in:
1111
- **Owner:** `19PINE-AI`
12-
- **Repository:** `pine-assistant-python`
12+
- **Repository:** `pine-python`
1313
- **Workflow name:** `publish.yml`
1414
3. Save.
1515

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ cli = ["click>=8.1.0", "rich>=13.0.0"]
3333
dev = ["pytest>=7.0", "pytest-asyncio>=0.23.0", "ruff>=0.4.0"]
3434

3535
[project.urls]
36-
Homepage = "https://github.com/19PINE-AI/pine-assistant-python"
37-
Repository = "https://github.com/19PINE-AI/pine-assistant-python"
38-
Issues = "https://github.com/19PINE-AI/pine-assistant-python/issues"
36+
Homepage = "https://github.com/19PINE-AI/pine-python"
37+
Repository = "https://github.com/19PINE-AI/pine-python"
38+
Issues = "https://github.com/19PINE-AI/pine-python/issues"
3939

4040
[project.scripts]
4141
pine = "pine_assistant.cli.main:main"

tests/test_basics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616

1717
def test_version():
18-
assert __version__ == "0.1.0"
18+
assert __version__ == "0.1.1"
1919

2020

2121
def test_public_exports():

0 commit comments

Comments
 (0)