File tree 3 files changed +15
-6
lines changed
3 files changed +15
-6
lines changed Original file line number Diff line number Diff line change 1
1
# File: __init__.py
2
2
# Author: Yinhao Zhu (yzhu10@nd.edu)
3
3
4
+ __version__ = "0.3.2"
5
+
4
6
from . import model
5
7
from . import functions
6
8
from . import mean_functions
Original file line number Diff line number Diff line change
1
+ # File: setup.py
2
+ # File Created: Saturday, 30th October 2021 7:39:23 am
3
+ # Author: Steven Atkinson (steven@atkinson.mn)
4
+
5
+ [metadata]
6
+ version = attr: gptorch.__version__
Original file line number Diff line number Diff line change 9
9
raise RuntimeError ("gptorch requires python 3.5+" )
10
10
11
11
# 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
+ )
14
15
15
16
requirements = [
16
17
"numpy>=1.10" ,
20
21
"torch" , # conda install pytorch -c pytorch
21
22
"pytest>=3.5.0" ,
22
23
"graphviz>=0.9" ,
23
- "jupyter"
24
+ "jupyter" ,
24
25
]
25
26
26
- setup (name = "gptorch" ,
27
- version = "0.3.1 " ,
27
+ setup (
28
+ name = "gptorch " ,
28
29
description = "gptorch - a Gaussian process toolbox built on PyTorch" ,
29
30
author = "Yinhao Zhu, Steven Atkinson" ,
30
31
author_email = "yzhu10@nd.edu, satkinso@nd.edu" ,
31
32
url = "https://github.com/cics-nd/gptorch" ,
32
33
install_requires = requirements ,
33
- packages = find_packages ()
34
+ packages = find_packages (),
34
35
)
You can’t perform that action at this time.
0 commit comments