Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions openapi-generator-config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
projectName: saturn-api
packageName: saturn_api
packageUrl: github.com/saturncloud/saturn-api
packageVersion: 1.0.0
packageUrl: https://github.com/saturncloud/saturn-api
packageVersion: 2026.6.3
library: httpx
10 changes: 6 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
[project]
name = "saturn_api"
dynamic = ["version"]
# Version is set by openapi-generator from `packageVersion` in
# openapi-generator-config.yaml. Bump it there and regenerate to release a new
# version; keep this value in sync (the generator stamps it across setup.py,
# saturn_api/__init__.py, etc.).
version = "2026.6.3"
description = "Saturn Cloud"
authors = [
{name = "OpenAPI Generator Community",email = "team@openapitools.org"},
Expand Down Expand Up @@ -34,11 +38,9 @@ mypy = ">= 1.5"


[build-system]
requires = ["setuptools>=61", "setuptools-scm>=8"]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"

[tool.setuptools_scm]

[tool.pylint.'MESSAGES CONTROL']
extension-pkg-whitelist = "pydantic"

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
NAME = "saturn-api"
VERSION = "1.0.0"
VERSION = "2026.6.3"
PYTHON_REQUIRES = ">= 3.10"
REQUIRES = [
"python-dateutil >= 2.8.2",
Expand All @@ -33,7 +33,7 @@
description="Saturn Cloud",
author="OpenAPI Generator community",
author_email="team@openapitools.org",
url="github.com/saturncloud/saturn-api",
url="https://github.com/saturncloud/saturn-api",
keywords=["OpenAPI", "OpenAPI-Generator", "Saturn Cloud"],
install_requires=REQUIRES,
packages=find_packages(exclude=["test", "tests"]),
Expand Down
Loading