Skip to content

Commit 80c62a2

Browse files
committed
Version bump to 0.3.2
1 parent f2fe8ad commit 80c62a2

File tree

3 files changed

+15
-6
lines changed

3 files changed

+15
-6
lines changed

gptorch/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# File: __init__.py
22
# Author: Yinhao Zhu ([email protected])
33

4+
__version__ = "0.3.2"
5+
46
from . import model
57
from . import functions
68
from . import mean_functions

setup.cfg

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# File: setup.py
2+
# File Created: Saturday, 30th October 2021 7:39:23 am
3+
# Author: Steven Atkinson ([email protected])
4+
5+
[metadata]
6+
version = attr: gptorch.__version__

setup.py

+7-6
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99
raise RuntimeError("gptorch requires python 3.5+")
1010

1111
# Python 3.5 can't do matplotlib 3.1 and up.
12-
matplotlib_dependency = "matplotlib>=2.1.2" if sys.version_info[1] >= 6 else \
13-
"matplotlib>=2.1.2, <3.1"
12+
matplotlib_dependency = (
13+
"matplotlib>=2.1.2" if sys.version_info[1] >= 6 else "matplotlib>=2.1.2, <3.1"
14+
)
1415

1516
requirements = [
1617
"numpy>=1.10",
@@ -20,15 +21,15 @@
2021
"torch", # conda install pytorch -c pytorch
2122
"pytest>=3.5.0",
2223
"graphviz>=0.9",
23-
"jupyter"
24+
"jupyter",
2425
]
2526

26-
setup(name="gptorch",
27-
version="0.3.1",
27+
setup(
28+
name="gptorch",
2829
description="gptorch - a Gaussian process toolbox built on PyTorch",
2930
author="Yinhao Zhu, Steven Atkinson",
3031
3132
url="https://github.com/cics-nd/gptorch",
3233
install_requires=requirements,
33-
packages=find_packages()
34+
packages=find_packages(),
3435
)

0 commit comments

Comments
 (0)