diff --git a/openapi-generator-config.yaml b/openapi-generator-config.yaml index 9f1978f..b603d9f 100644 --- a/openapi-generator-config.yaml +++ b/openapi-generator-config.yaml @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 7327e09..392c194 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"}, @@ -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" diff --git a/setup.py b/setup.py index 19c68a0..20968a7 100644 --- a/setup.py +++ b/setup.py @@ -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", @@ -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"]),