From d66d54d6235bf7b5dd64d80b333d5e3e54bbc94e Mon Sep 17 00:00:00 2001 From: Vivek Bharadwaj Date: Thu, 15 Jan 2026 19:48:42 -0800 Subject: [PATCH 1/2] Release bugfix. --- .github/workflows/release.yaml | 32 ++++++++++++++------------------ 1 file changed, 14 insertions(+), 18 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 2f351db..aee619a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -3,11 +3,9 @@ name: Upload Python Package on: workflow_dispatch: -# ref: https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/ - jobs: build-oeq: - name: Build distribution + name: Build oeq dist runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -18,37 +16,36 @@ jobs: - name: install dependencies, then build source tarball run: | cd openequivariance - python3 -m pip install build --user - python3 -m build --sdist + python3 -m pip install build + python3 -m build --sdist - name: store the distribution packages uses: actions/upload-artifact@v4 with: - name: python-package-distributions + name: oeq-package-distributions path: openequivariance/dist/ pypi-publish: - name: Upload release to PyPI + name: Upload oeq to PyPI runs-on: ubuntu-latest needs: build-oeq environment: name: pypi url: https://pypi.org/p/openequivariance permissions: - # IMPORTANT: this permission is mandatory for Trusted Publishing id-token: write steps: - name: download the distributions uses: actions/download-artifact@v4 with: - name: python-package-distributions - path: openequivariance/dist/ + name: oeq-package-distributions + path: dist/ - name: publish package distributions to PyPI uses: pypa/gh-action-pypi-publish@release/v1 # ------------------------------------ build-oeq-extjax: - name: Build distribution + name: Build extjax dist runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -59,29 +56,28 @@ jobs: - name: install dependencies, then build source tarball run: | cd openequivariance_extjax - python3 -m pip install build --user + python3 -m pip install build python3 -m build --sdist - name: store the distribution packages uses: actions/upload-artifact@v4 with: - name: python-package-distributions + name: oeqjax-package-distributions path: openequivariance_extjax/dist/ pypi-publish-extjax: - name: Upload release to PyPI + name: Upload extjax to PyPI runs-on: ubuntu-latest needs: build-oeq-extjax environment: name: pypi url: https://pypi.org/p/openequivariance_extjax permissions: - # IMPORTANT: this permission is mandatory for Trusted Publishing id-token: write steps: - name: download the distributions uses: actions/download-artifact@v4 with: - name: python-package-distributions - path: openequivariance_extjax/dist/ + name: oeqjax-package-distributions + path: dist/ - name: publish package distributions to PyPI - uses: pypa/gh-action-pypi-publish@release/v1 \ No newline at end of file + uses: pypa/gh-action-pypi-publish@release/v1 From a92838d534edcd00b06589fa63516d8e8c60aab6 Mon Sep 17 00:00:00 2001 From: Vivek Bharadwaj Date: Thu, 15 Jan 2026 20:40:33 -0800 Subject: [PATCH 2/2] Added copy of license. --- openequivariance_extjax/LICENSE | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) mode change 120000 => 100644 openequivariance_extjax/LICENSE diff --git a/openequivariance_extjax/LICENSE b/openequivariance_extjax/LICENSE deleted file mode 120000 index ea5b606..0000000 --- a/openequivariance_extjax/LICENSE +++ /dev/null @@ -1 +0,0 @@ -../LICENSE \ No newline at end of file diff --git a/openequivariance_extjax/LICENSE b/openequivariance_extjax/LICENSE new file mode 100644 index 0000000..2b29381 --- /dev/null +++ b/openequivariance_extjax/LICENSE @@ -0,0 +1,28 @@ +BSD 3-Clause License + +Copyright (c) 2025, The Regents of the University of California, through Lawrence Berkeley National Laboratory (subject to receipt of any required approvals from the U.S. Dept. of Energy). All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.