From acaf4b89164f24b624d94a5ef53705bc1eb88b1a Mon Sep 17 00:00:00 2001 From: Ken Kroenlein Date: Wed, 4 Mar 2026 11:20:54 -0700 Subject: [PATCH 1/2] Update deploy script for setup.py migration --- .github/workflows/deploy.yml | 4 +++- src/citrine/__version__.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index a77ad0d28..85ff13b7d 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -14,7 +14,9 @@ jobs: - name: Check out repository code uses: actions/checkout@v4 - name: Build - run: python setup.py sdist bdist_wheel + run: pip install --upgrade build + - name: Build + run: python -m build - name: Publish uses: pypa/gh-action-pypi-publish@release/v1 with: diff --git a/src/citrine/__version__.py b/src/citrine/__version__.py index ce1305bf4..76ad18b89 100644 --- a/src/citrine/__version__.py +++ b/src/citrine/__version__.py @@ -1 +1 @@ -__version__ = "4.0.0" +__version__ = "4.0.1" From 3141718cd25d1fa55a0e9ad8926fd57f105c73b9 Mon Sep 17 00:00:00 2001 From: Austin Noto-Moniz <93676107+anoto-moniz@users.noreply.github.com> Date: Wed, 4 Mar 2026 13:54:04 -0500 Subject: [PATCH 2/2] Revert version To keep things clean, let's force this release to 4.0.0 --- src/citrine/__version__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/citrine/__version__.py b/src/citrine/__version__.py index 76ad18b89..ce1305bf4 100644 --- a/src/citrine/__version__.py +++ b/src/citrine/__version__.py @@ -1 +1 @@ -__version__ = "4.0.1" +__version__ = "4.0.0"