From 99dccb06feb70b0f08770eb22465fb6063311466 Mon Sep 17 00:00:00 2001 From: Soumyaworks Date: Mon, 25 Sep 2023 02:14:58 +0530 Subject: [PATCH 1/4] Renaming authors and removing email from setup.py --- Manylinux2014_Compliant_Source/pkg/setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Manylinux2014_Compliant_Source/pkg/setup.py b/Manylinux2014_Compliant_Source/pkg/setup.py index 1feead47..b05e142a 100755 --- a/Manylinux2014_Compliant_Source/pkg/setup.py +++ b/Manylinux2014_Compliant_Source/pkg/setup.py @@ -52,8 +52,7 @@ def get_llvm_files(): setup( name="IR2Vec", - author="Shikhar Jain", - author_email="cs22mtech02002@iith.ac.in", + author="IR2Vec Developers", version=VERSION, description="given input .ll/.bc generates corresponding IR2Vec embeddings in a file or on stdout", long_description=DESCRIPTION, From 2a6c8bdaf465dfa2eb3f9189b749b3fcf2628f3c Mon Sep 17 00:00:00 2001 From: Soumyaworks Date: Mon, 25 Sep 2023 02:21:06 +0530 Subject: [PATCH 2/4] Link related changes pointing to iith-compilers manylinux repo docker images --- .devcontainer/devcontainer.json | 2 +- .github/workflows/upload-pypi.yml | 2 +- .github/workflows/wheel.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 3c280588..b19b0230 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -3,7 +3,7 @@ { "name": "LLVM Manylinux", // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile - "image": "ghcr.io/necessary129/manylinux2014-llvm:12-x86_64" + "image": "ghcr.io/iith-compilers/manylinux2014-llvm:x86-llvm12" // Features to add to the dev container. More info: https://containers.dev/features. // "features": {}, diff --git a/.github/workflows/upload-pypi.yml b/.github/workflows/upload-pypi.yml index 4dc46370..d9fcc0bf 100644 --- a/.github/workflows/upload-pypi.yml +++ b/.github/workflows/upload-pypi.yml @@ -22,7 +22,7 @@ jobs: build_sdist: runs-on: ubuntu-latest - container: ghcr.io/necessary129/manylinux2014-llvm:12-x86_64 + container: ghcr.io/iith-compilers/manylinux2014-llvm:x86-llvm12 steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/wheel.yml b/.github/workflows/wheel.yml index ad446275..401ff0f4 100644 --- a/.github/workflows/wheel.yml +++ b/.github/workflows/wheel.yml @@ -20,7 +20,7 @@ jobs: env: CIBW_SKIP: "pp* *-musllinux_*" CIBW_ARCHS: "x86_64" - CIBW_MANYLINUX_X86_64_IMAGE: "ghcr.io/necessary129/manylinux2014-llvm:12-x86_64" + CIBW_MANYLINUX_X86_64_IMAGE: "ghcr.io/iith-compilers/manylinux2014-llvm:x86-llvm12" CIBW_BEFORE_ALL: "bash Manylinux2014_Compliant_Source/pkg/build.sh" CIBW_TEST_REQUIRES: pytest CIBW_TEST_COMMAND: "pytest {project}/Manylinux2014_Compliant_Source/pkg/tests" From 682b20c13f2cfdd4820def8d7376f801caad7190 Mon Sep 17 00:00:00 2001 From: Soumyaworks Date: Mon, 25 Sep 2023 02:41:40 +0530 Subject: [PATCH 3/4] Minor updates to link related changes --- .devcontainer/devcontainer.json | 2 +- .github/workflows/upload-pypi.yml | 2 +- .github/workflows/wheel.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index b19b0230..b77c2418 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -3,7 +3,7 @@ { "name": "LLVM Manylinux", // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile - "image": "ghcr.io/iith-compilers/manylinux2014-llvm:x86-llvm12" + "image": "ghcr.io/iith-compilers/manylinux2014-llvm/manylinux2014-llvm:x86-llvm12" // Features to add to the dev container. More info: https://containers.dev/features. // "features": {}, diff --git a/.github/workflows/upload-pypi.yml b/.github/workflows/upload-pypi.yml index d9fcc0bf..f4efaecd 100644 --- a/.github/workflows/upload-pypi.yml +++ b/.github/workflows/upload-pypi.yml @@ -22,7 +22,7 @@ jobs: build_sdist: runs-on: ubuntu-latest - container: ghcr.io/iith-compilers/manylinux2014-llvm:x86-llvm12 + container: ghcr.io/iith-compilers/manylinux2014-llvm/manylinux2014-llvm:x86-llvm12 steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/wheel.yml b/.github/workflows/wheel.yml index 401ff0f4..db5ea130 100644 --- a/.github/workflows/wheel.yml +++ b/.github/workflows/wheel.yml @@ -20,7 +20,7 @@ jobs: env: CIBW_SKIP: "pp* *-musllinux_*" CIBW_ARCHS: "x86_64" - CIBW_MANYLINUX_X86_64_IMAGE: "ghcr.io/iith-compilers/manylinux2014-llvm:x86-llvm12" + CIBW_MANYLINUX_X86_64_IMAGE: "ghcr.io/iith-compilers/manylinux2014-llvm/manylinux2014-llvm:x86-llvm12" CIBW_BEFORE_ALL: "bash Manylinux2014_Compliant_Source/pkg/build.sh" CIBW_TEST_REQUIRES: pytest CIBW_TEST_COMMAND: "pytest {project}/Manylinux2014_Compliant_Source/pkg/tests" From 21a26722ad9849caa4ae7b27dd1d618a2adb3090 Mon Sep 17 00:00:00 2001 From: Soumyaworks Date: Mon, 25 Sep 2023 20:14:04 +0530 Subject: [PATCH 4/4] Pre-commit changes in __init__.py --- Manylinux2014_Compliant_Source/pkg/IR2Vec/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Manylinux2014_Compliant_Source/pkg/IR2Vec/__init__.py b/Manylinux2014_Compliant_Source/pkg/IR2Vec/__init__.py index 56145a60..df8c707a 100755 --- a/Manylinux2014_Compliant_Source/pkg/IR2Vec/__init__.py +++ b/Manylinux2014_Compliant_Source/pkg/IR2Vec/__init__.py @@ -21,7 +21,7 @@ VERSION = vmatch.group("version") continue break - + __version__ = VERSION __copyright__ = "Copyright The Contributors of IR2Vec" __license__ = "BSD 4-Clause License"