From 3fc6eb38e9ce88d985c7e8aa769d240b0afeb62f Mon Sep 17 00:00:00 2001 From: Theodore Papamarkou Date: Sun, 6 Dec 2020 11:20:24 +0200 Subject: [PATCH] Updated in installation to use newer kanga --- eeyore/__init__.py | 2 +- installation/gdev.sh | 1 + installation/meta.yaml | 6 +++--- installation/requirements.txt | 2 +- requirements.txt | 2 +- setup.py | 2 +- 6 files changed, 8 insertions(+), 7 deletions(-) diff --git a/eeyore/__init__.py b/eeyore/__init__.py index 4c744de..4bfdfc6 100644 --- a/eeyore/__init__.py +++ b/eeyore/__init__.py @@ -1 +1 @@ -__version__ = '0.0.13' +__version__ = '0.0.14' diff --git a/installation/gdev.sh b/installation/gdev.sh index 11b3374..9d3f106 100755 --- a/installation/gdev.sh +++ b/installation/gdev.sh @@ -13,6 +13,7 @@ export CONDAENV="$CONDADIR/envs/$PKGNAME" export CONDABIN="$CONDADIR/bin/conda" export CONDASCRIPT='Miniconda3-latest-Linux-x86_64.sh' export PKGURL="https://github.com/papamarkou/$PKGNAME.git" +export PKGDEVREQS="$PYPKGDIR/$PKGNAME/installation/requirements.txt" sudo apt-get update diff --git a/installation/meta.yaml b/installation/meta.yaml index 445e1e3..7a3513f 100644 --- a/installation/meta.yaml +++ b/installation/meta.yaml @@ -1,5 +1,5 @@ {% set name = "eeyore" %} -{% set version = "0.0.13" %} +{% set version = "0.0.14" %} package: name: "{{ name|lower }}" @@ -7,7 +7,7 @@ package: source: url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz" - sha256: ce34e3fa69fd79111983285d04b06c23d4db95bb6da838bec7e3a99e33889f33 + sha256: enter-sha256-key-here build: number: 0 @@ -19,7 +19,7 @@ requirements: - python run: - cpuonly - - kanga >=0.0.15 + - kanga >=0.0.17 - numpy >=1.19.2 - python - pytorch diff --git a/installation/requirements.txt b/installation/requirements.txt index da23adc..741ec00 100644 --- a/installation/requirements.txt +++ b/installation/requirements.txt @@ -1,4 +1,4 @@ numpy>=1.19.2 torch @ https://download.pytorch.org/whl/cpu/torch-1.7.0%2Bcpu-cp37-cp37m-linux_x86_64.whl torchdiffeq>=0.1.1 -kanga>=0.0.15 +kanga>=0.0.17 diff --git a/requirements.txt b/requirements.txt index 3b4ab78..9844049 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ numpy>=1.19.2 torch>=1.6.0 torchdiffeq>=0.1.1 -kanga>=0.0.15 +kanga>=0.0.17 diff --git a/setup.py b/setup.py index 509d3f9..01be081 100755 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ ], keywords=['Bayesian', 'deep learning', 'Markov chains', 'MCMC', 'Monte Carlo', 'neural networks'], python_requires='>=3.6', - install_requires=['numpy>=1.19.2', 'torch>=1.6.0', 'torchdiffeq>=0.1.1', 'kanga>=0.0.15'], + install_requires=['numpy>=1.19.2', 'torch>=1.6.0', 'torchdiffeq>=0.1.1', 'kanga>=0.0.17'], package_data={'eeyore': ['data/*/x.csv', 'data/*/y.csv', 'data/*/readme.md']}, include_package_data=True, zip_safe=False