File tree 3 files changed +7
-5
lines changed
3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
- version : 0.3.{build}-{branch}
1
+ version : 0.3.1. {build}-{branch}
2
2
3
3
pull_requests :
4
4
do_not_increment_build_number : true
Original file line number Diff line number Diff line change 1
- __version__ = "0.3.0 "
1
+ __version__ = "0.3.1 "
Original file line number Diff line number Diff line change 23
23
with open ("README.md" , "r" ) as fh :
24
24
long_description = fh .read ()
25
25
26
- init_file = {}
26
+ version_file = {}
27
27
with open (os .path .join ("qucumber" , "__version__.py" ), "r" ) as f :
28
- exec (f .read (), init_file )
28
+ exec (f .read (), version_file )
29
29
30
30
install_requires = [
31
31
"torch>=0.4.1,<0.4.2; sys_platform != 'win32'" ,
34
34
"matplotlib>=2.2" ,
35
35
]
36
36
37
+ # because RTD runs out of memory when using `pip install -e .[rtd]` to install
38
+ # docs dependencies for some reason
37
39
with open (".build_tools/readthedocs/requirements.txt" , "r" ) as reqs :
38
40
rtd_requires = [line .strip () for line in reqs .readlines ()]
39
41
81
83
82
84
setuptools .setup (
83
85
name = "qucumber" ,
84
- version = init_file ["__version__" ],
86
+ version = version_file ["__version__" ],
85
87
description = "Neural Network Quantum State Tomography." ,
86
88
long_description = long_description ,
87
89
long_description_content_type = "text/markdown" ,
You can’t perform that action at this time.
0 commit comments