-
Notifications
You must be signed in to change notification settings - Fork 7
Publich python package CI #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,170 @@ | ||
| #!/bin/env python | ||
| import argparse | ||
| from dataclasses import dataclass | ||
|
|
||
| from packaging.version import Version | ||
|
|
||
| PYPROJECT_PATH = "pyproject.toml" | ||
| DEFAULT_CHANGELOG_PATH = "CHANGELOG.md" | ||
| DEFAULT_YDB_VERSION_FILE = "ydb_mcp/version.py" | ||
| MARKER = "# AUTOVERSION" | ||
|
|
||
|
|
||
| @dataclass(init=False) | ||
| class VersionLine: | ||
| old_line: str | ||
| major: int | ||
| minor: int | ||
| patch: int | ||
| pre: int | ||
|
|
||
| def __init__(self, old_line: str, version_str: str): | ||
| self.old_line = old_line | ||
|
|
||
| version = Version(version_str) | ||
| self.major = version.major | ||
| self.minor = version.minor | ||
| self.micro = version.micro | ||
|
|
||
| if version.pre is None: | ||
| self.pre = 0 | ||
| else: | ||
| self.pre = version.pre[1] | ||
|
|
||
| def increment(self, part_name: str, with_beta: bool): | ||
| if part_name == "minor": | ||
| self.increment_minor(with_beta) | ||
| elif part_name == "patch" or part_name == "micro": | ||
| self.increment_micro(with_beta) | ||
| else: | ||
| raise Exception("unexpected increment type: '%s'" % part_name) | ||
|
|
||
| def increment_minor(self, with_beta: bool): | ||
| if with_beta: | ||
| if self.pre == 0 or self.micro != 0: | ||
| self.increment_minor(False) | ||
| self.pre += 1 | ||
| return | ||
|
|
||
| if self.micro == 0 and self.pre > 0: | ||
| self.pre = 0 | ||
| return | ||
|
|
||
| self.minor += 1 | ||
| self.micro = 0 | ||
| self.pre = 0 | ||
|
|
||
| def increment_micro(self, with_beta: bool): | ||
| if with_beta: | ||
| if self.pre == 0: | ||
| self.increment_micro(False) | ||
| self.pre += 1 | ||
| return | ||
|
|
||
| if self.pre > 0: | ||
| self.pre = 0 | ||
| return | ||
|
|
||
| self.micro += 1 | ||
|
|
||
| def __str__(self): | ||
| if self.pre > 0: | ||
| pre = "b%s" % self.pre | ||
| else: | ||
| pre = "" | ||
|
|
||
| return "%s.%s.%s%s" % (self.major, self.minor, self.micro, pre) | ||
|
|
||
| def version_line_with_mark(self): | ||
| return 'version = "%s" %s' % (str(self), MARKER) | ||
|
|
||
|
|
||
| def extract_version(pyproject_content: str): | ||
| version_line = "" | ||
| for line in pyproject_content.splitlines(): | ||
| if MARKER in line: | ||
| version_line = line | ||
| break | ||
|
|
||
| if version_line == "": | ||
| raise Exception("Not found version line") | ||
|
|
||
| version_line = version_line.strip() | ||
|
|
||
| parts = version_line.split('"') | ||
| version_part = parts[1] | ||
|
|
||
| return VersionLine(old_line=version_line, version_str=version_part) | ||
|
|
||
|
|
||
| def increment_version_at_pyproject( | ||
| pyproject_path: str, inc_type: str, with_beta: bool | ||
| ) -> str: | ||
| with open(pyproject_path, "rt") as f: | ||
| setup_content = f.read() | ||
|
|
||
| version = extract_version(setup_content) | ||
| version.increment(inc_type, with_beta) | ||
| setup_content = setup_content.replace( | ||
| version.old_line, version.version_line_with_mark() | ||
| ) | ||
|
|
||
| with open(pyproject_path, "w") as f: | ||
| f.write(setup_content) | ||
|
|
||
| return str(version) | ||
|
|
||
|
|
||
| def add_changelog_version(changelog_path, version: str): | ||
| with open(changelog_path, "rt") as f: | ||
| content = f.read() | ||
| content = content.strip() | ||
|
|
||
| if content.startswith("##"): | ||
| return | ||
|
|
||
| content = """## %s ## | ||
| %s | ||
| """ % (version, content) | ||
| with open(changelog_path, "w") as f: | ||
| f.write(content) | ||
|
|
||
|
|
||
| def set_version_in_version_file(file_path: str, version: str): | ||
| with open(file_path, "w") as f: | ||
| f.write('VERSION = "%s"\n' % version) | ||
|
|
||
|
|
||
| def main(): | ||
| parser = argparse.ArgumentParser() | ||
| parser.add_argument( | ||
| "--inc-type", | ||
| default="minor", | ||
| help="increment version type: patch or minor", | ||
| choices=["minor", "patch"], | ||
| ) | ||
| parser.add_argument( | ||
| "--beta", choices=["true", "false"], help="is beta version" | ||
| ) | ||
| parser.add_argument( | ||
| "--changelog-path", | ||
| default=DEFAULT_CHANGELOG_PATH, | ||
| help="path to changelog", | ||
| type=str, | ||
| ) | ||
| parser.add_argument("--pyproject-path", default=PYPROJECT_PATH) | ||
|
|
||
| args = parser.parse_args() | ||
|
|
||
| is_beta = args.beta == "true" | ||
|
|
||
| new_version = increment_version_at_pyproject( | ||
| args.pyproject_path, args.inc_type, is_beta | ||
| ) | ||
| add_changelog_version(args.changelog_path, new_version) | ||
| set_version_in_version_file(DEFAULT_YDB_VERSION_FILE, new_version) | ||
| print(new_version) | ||
|
|
||
|
|
||
| if __name__ == "__main__": | ||
| main() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,113 @@ | ||
| # This workflow will upload a Python Package using Twine when a release is created | ||
| # For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries | ||
|
|
||
| # This workflow uses actions that are not certified by GitHub. | ||
| # They are provided by a third-party and are governed by | ||
| # separate terms of service, privacy policy, and support | ||
| # documentation. | ||
|
|
||
| name: Publish package release | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
| inputs: | ||
| version-change: | ||
| description: Version part | ||
| required: true | ||
| type: choice | ||
| default: patch | ||
| options: | ||
| - minor | ||
| - patch | ||
| beta: | ||
| description: Is beta version | ||
| required: true | ||
| type: boolean | ||
| default: False | ||
| jobs: | ||
| publish: | ||
| env: | ||
| VERSION_CHANGE: ${{ github.event.inputs.version-change }} | ||
| WITH_BETA: ${{ github.event.inputs.beta }} | ||
| GH_TOKEN: ${{ secrets.YDB_PLATFORM_BOT_TOKEN_REPO }} | ||
| CHANGELOG_FILE: CHANGELOG.md | ||
| PYPROJECT_PATH: pyproject.toml | ||
|
|
||
| permissions: | ||
| contents: write | ||
| id-token: write # IMPORTANT: this permission is mandatory for trusted publishing | ||
|
|
||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v3 | ||
| with: | ||
| token: ${{ secrets.YDB_PLATFORM_BOT_TOKEN_REPO }} | ||
|
|
||
| - name: Set up Python | ||
| uses: actions/setup-python@v3 | ||
| with: | ||
| python-version: '3.9' | ||
|
|
||
| - name: Install dependencies | ||
| run: | | ||
| python -m pip install --upgrade pip | ||
| pip install packaging build | ||
|
|
||
| - name: read changelog | ||
| id: read-changelog | ||
| run: | | ||
| CHANGELOG=$(cat $CHANGELOG_FILE | sed -e '/^## .*$/,$d') | ||
| echo "CHANGELOG<<CHANGELOGEOF_MARKER" >> $GITHUB_ENV | ||
| echo "$CHANGELOG" >> $GITHUB_ENV | ||
| echo "CHANGELOGEOF_MARKER" >> $GITHUB_ENV | ||
| echo "# Changelog" >> $GITHUB_STEP_SUMMARY | ||
| echo "$CHANGELOG" >> $GITHUB_STEP_SUMMARY | ||
|
|
||
|
|
||
| - name: Increment version | ||
| id: increment-version | ||
| run: | | ||
| NEW_VERSION=$(python3 ./.github/scripts/increment_version.py --inc-type=$VERSION_CHANGE --beta=$WITH_BETA) | ||
| echo new version: $NEW_VERSION | ||
| echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_OUTPUT | ||
| echo "New version: $NEW_VERSION" >> $GITHUB_STEP_SUMMARY | ||
|
|
||
| - name: Build package | ||
| run: python -m build | ||
|
|
||
| - name: Publish release on github | ||
| run: | | ||
| if [[ -z "$CHANGELOG" ]] | ||
| then | ||
| echo "CHANGELOG empty" | ||
| exit 1; | ||
| fi; | ||
|
|
||
| TAG="${{ steps.increment-version.outputs.NEW_VERSION }}" | ||
|
|
||
| # Get previous version from changelog | ||
| # pre-incremented version not used for consistent changelog with release notes | ||
| # for example changelog may be rewrited when switch from beta to release | ||
| # and remove internal beta changes | ||
| LAST_TAG=$(cat $CHANGELOG_FILE | grep '^## .* ##$' | head -n 2 | tail -n 1 | cut -d ' ' -f 2) | ||
|
|
||
| git config --global user.email "robot@umbrella"; | ||
| git config --global user.name "robot"; | ||
| git commit -am "Release: $TAG"; | ||
|
|
||
| git tag "$TAG" | ||
| git push && git push --tags | ||
|
|
||
| CHANGELOG="$CHANGELOG | ||
|
|
||
| Full Changelog: [$LAST_TAG...$TAG](https://github.com/ydb-platform/ydb-sqlalchemy/compare/$LAST_TAG...$TAG)" | ||
| if [ "$WITH_BETA" = true ] | ||
| then | ||
| gh release create --prerelease $TAG --title "$TAG" --notes "$CHANGELOG" | ||
| else | ||
| gh release create $TAG --title "$TAG" --notes "$CHANGELOG" | ||
| fi; | ||
|
|
||
| - name: Publish package | ||
| uses: pypa/gh-action-pypi-publish@release/v1.8 | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| * Update package | ||
|
|
||
| # 0.1.0 | ||
| * First version |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,26 +4,25 @@ build-backend = "setuptools.build_meta" | |
|
|
||
| [project] | ||
| name = "ydb-mcp" | ||
| version = "0.1.0" | ||
| version = "0.1.0" # AUTOVERSION | ||
| description = "Model Context Protocol server for YDB DBMS" | ||
| readme = "README.md" | ||
| authors = [ | ||
| {name = "YDB MCP Team", email = "[email protected]"} | ||
| ] | ||
| license = {text = "Apache 2.0"} | ||
| requires-python = ">=3.8" | ||
| requires-python = ">=3.10" | ||
| classifiers = [ | ||
| "Development Status :: 3 - Alpha", | ||
| "Intended Audience :: Developers", | ||
| "Programming Language :: Python :: 3", | ||
| "Programming Language :: Python :: 3.8", | ||
| "Programming Language :: Python :: 3.9", | ||
| "Programming Language :: Python :: 3.10", | ||
| "Programming Language :: Python :: 3.11", | ||
| "Programming Language :: Python :: 3.12", | ||
| ] | ||
| dependencies = [ | ||
| "ydb>=3.0.0", | ||
| "mcp-server>=0.1.0", | ||
| "httpx>=0.25.0", | ||
| "ydb>=3.21.0", | ||
| "mcp>=1.6.0", | ||
| ] | ||
|
|
||
| [project.optional-dependencies] | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| ydb>=3.0.0 | ||
| mcp-server>=0.1.0 | ||
| ydb>=3.21.0 | ||
| mcp>=1.6.0 |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| VERSION = "0.1.0" |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The workflow is configured to use Python 3.9, but pyproject.toml requires Python >=3.10. Consider updating the workflow to use a compatible Python version.