Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version update before the release #167

Merged
merged 3 commits into from
Oct 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/github-actions-python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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},
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "dicee"
requires-python = ">=3.9"
version="0.0.6"
version="0.0.7"
authors = [
{ name="Caglar Demir", email="[email protected]" },
]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading