Skip to content

Commit

Permalink
Updated in installation to use newer kanga
Browse files Browse the repository at this point in the history
  • Loading branch information
papamarkou committed Dec 6, 2020
1 parent b52ba5d commit 3fc6eb3
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion eeyore/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.0.13'
__version__ = '0.0.14'
1 change: 1 addition & 0 deletions installation/gdev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions installation/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{% set name = "eeyore" %}
{% set version = "0.0.13" %}
{% set version = "0.0.14" %}

package:
name: "{{ name|lower }}"
version: "{{ version }}"

source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: ce34e3fa69fd79111983285d04b06c23d4db95bb6da838bec7e3a99e33889f33
sha256: enter-sha256-key-here

build:
number: 0
Expand All @@ -19,7 +19,7 @@ requirements:
- python
run:
- cpuonly
- kanga >=0.0.15
- kanga >=0.0.17
- numpy >=1.19.2
- python
- pytorch
Expand Down
2 changes: 1 addition & 1 deletion installation/requirements.txt
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numpy>=1.19.2
torch>=1.6.0
torchdiffeq>=0.1.1
kanga>=0.0.15
kanga>=0.0.17
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3fc6eb3

Please sign in to comment.