← 返回首页
fix: version and package name in sdk (#8) · makeplane/plane-python-sdk@81c96db · GitHub
Skip to content

Navigation Menu

Toggle navigation
Sign in
Appearance settings
Search or jump to...

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Include my email address so I can be contacted

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Resetting focus

Commit 81c96db

Browse files
fix: version and package name in sdk (#8)
* fix: version and package name in sdk * delete un-used files
1 parent 01115a1 commit 81c96db

7 files changed

Lines changed: 3 additions & 353 deletions

File tree

‎.github/workflows/publish.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Get version from setup.py
3636
id: package-version
3737
run: |
38-
VERSION=$(grep "VERSION = " setup.py | cut -d'"' -f2)
38+
VERSION=$(grep "version = " pyproject.toml | cut -d'"' -f2 | head -1)
3939
if [ -z "$VERSION" ]; then
4040
echo "Error: Could not extract version from setup.py"
4141
exit 1

‎.gitlab-ci.yml‎

Lines changed: 0 additions & 31 deletions
Load diffThis file was deleted.

‎.openapi-generator-ignore‎

Lines changed: 0 additions & 23 deletions
Load diffThis file was deleted.

‎.openapi-generator/FILES‎

Lines changed: 0 additions & 276 deletions
Load diffThis file was deleted.

‎.openapi-generator/VERSION‎

Lines changed: 0 additions & 1 deletion
Load diffThis file was deleted.

‎.travis.yml‎

Lines changed: 0 additions & 17 deletions
Load diffThis file was deleted.

‎pyproject.toml‎

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ requires = ["setuptools>=68", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
6-
name = "plane-python-sdk"
6+
name = "plane-sdk"
77
version = "0.2.0"
88
description = "Python SDK for Plane API"
99
readme = "README.md"
1010
requires-python = ">=3.10"
1111
license = { text = "MIT" }
12-
authors = [{ name = "Plane", email = "dev@plane.so" }]
12+
authors = [{ name = "Plane", email = "engineering@plane.so" }]
1313
dependencies = ["requests>=2.31.0", "pydantic>=2.4.0"]
1414

1515
[tool.setuptools.packages.find]
@@ -42,5 +42,3 @@ warn_unused_ignores = true
4242
warn_redundant_casts = true
4343
disallow_untyped_defs = true
4444
ignore_missing_imports = true
45-
46-

0 commit comments

Comments
 (0)

Footer

© 2026 GitHub, Inc.