From 1338314a9d3346befc9505f53f45e806521cfe6d Mon Sep 17 00:00:00 2001 From: Caglar Demir Date: Tue, 17 Oct 2023 10:17:51 +0200 Subject: [PATCH 1/3] Version update before the release --- README.md | 3 +-- setup.py | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d44bb128..f6b96b2e 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Deploy a pre-trained embedding model without writing a single line of code. ``` bash git clone https://github.com/dice-group/dice-embeddings.git conda create -n dice python=3.9 --no-default-packages && conda activate dice -pip3 install -r requirements.txt +cd dice-embeddings && pip3 install -r requirements.txt ``` or ```bash @@ -311,7 +311,6 @@ If you really like our work and want to cite it now, feel free to chose one :) pages={1--10}, year={2022} } - # QMult, OMult, ConvQ, ConvO @InProceedings{pmlr-v157-demir21a, title = {Convolutional Hypercomplex Embeddings for Link Prediction}, diff --git a/setup.py b/setup.py index 2a25ccb3..9d6e0232 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name="dicee", description="Dice embedding is an hardware-agnostic framework for large-scale knowledge graph embedding applications", - version="0.0.6", + version="0.0.7", packages=find_packages(), install_requires=[ "torch>=2.0.0", From 01a97b0ead9c81f2a5bb3b7f2c0520f90b876fab Mon Sep 17 00:00:00 2001 From: Caglar Demir Date: Tue, 17 Oct 2023 10:37:35 +0200 Subject: [PATCH 2/3] Potential fix for unexpected argument --format --- .github/workflows/github-actions-python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/github-actions-python-package.yml b/.github/workflows/github-actions-python-package.yml index 5e0c2832..88465d8f 100644 --- a/.github/workflows/github-actions-python-package.yml +++ b/.github/workflows/github-actions-python-package.yml @@ -22,7 +22,7 @@ jobs: pip install -r requirements.txt - name: Lint with ruff run: | - ruff --format=github --select=F63,F7,F82 --target-version=py39 dicee/. + ruff -- --format=github --select=F63,F7,F82 --target-version=py39 dicee/. - name: Test with pytest run: | wget https://files.dice-research.org/datasets/dice-embeddings/KGs.zip --no-check-certificate && unzip KGs.zip From 2bcb4c3fbf98658795908d9b9d57f0ebeec1d862 Mon Sep 17 00:00:00 2001 From: Caglar Demir Date: Tue, 17 Oct 2023 10:48:58 +0200 Subject: [PATCH 3/3] Potential fix for unexpected argument --format --- .github/workflows/github-actions-python-package.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/github-actions-python-package.yml b/.github/workflows/github-actions-python-package.yml index 88465d8f..c8d53f9b 100644 --- a/.github/workflows/github-actions-python-package.yml +++ b/.github/workflows/github-actions-python-package.yml @@ -22,7 +22,7 @@ jobs: pip install -r requirements.txt - name: Lint with ruff run: | - ruff -- --format=github --select=F63,F7,F82 --target-version=py39 dicee/. + ruff dicee/ - name: Test with pytest run: | wget https://files.dice-research.org/datasets/dice-embeddings/KGs.zip --no-check-certificate && unzip KGs.zip diff --git a/pyproject.toml b/pyproject.toml index c12b842e..532e221b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "dicee" requires-python = ">=3.9" -version="0.0.6" +version="0.0.7" authors = [ { name="Caglar Demir", email="caglardemir8@gmail.com" }, ]