Skip to content

Commit b389a7c

Browse files
committed
Install specific version of matplotlib2tikz
1 parent 3654225 commit b389a7c

File tree

1 file changed

+20
-14
lines changed

1 file changed

+20
-14
lines changed

setup.py

Lines changed: 20 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,18 @@
55

66

77
def readme():
8-
with open('README.md') as f:
8+
with open("README.md") as f:
99
return f.read()
1010

11+
1112
setuptools.setup(
12-
name='deepobs',
13-
version='1.1.1',
14-
description='Deep Learning Optimizer Benchmark Suite',
13+
name="deepobs",
14+
version="1.1.2",
15+
description="Deep Learning Optimizer Benchmark Suite",
1516
long_description=readme(),
16-
author='Frank Schneider, Lukas Balles and Philipp Hennig,',
17-
author_email='[email protected]',
18-
license='MIT',
17+
author="Frank Schneider, Lukas Balles and Philipp Hennig,",
18+
author_email="[email protected]",
19+
license="MIT",
1920
packages=setuptools.find_packages(),
2021
classifiers=[
2122
"Programming Language :: Python :: 3.6",
@@ -26,13 +27,18 @@ def readme():
2627
"Topic :: Scientific/Engineering :: Artificial Intelligence",
2728
],
2829
install_requires=[
29-
'argparse', 'numpy', 'pandas', 'matplotlib', 'matplotlib2tikz',
30-
'seaborn'
30+
"argparse",
31+
"numpy",
32+
"pandas",
33+
"matplotlib",
34+
"matplotlib2tikz==0.6.18",
35+
"seaborn",
3136
],
3237
scripts=[
33-
'deepobs/scripts/deepobs_prepare_data.sh',
34-
'deepobs/scripts/deepobs_get_baselines.sh',
35-
'deepobs/scripts/deepobs_plot_results.py',
36-
'deepobs/scripts/deepobs_estimate_runtime.py'
38+
"deepobs/scripts/deepobs_prepare_data.sh",
39+
"deepobs/scripts/deepobs_get_baselines.sh",
40+
"deepobs/scripts/deepobs_plot_results.py",
41+
"deepobs/scripts/deepobs_estimate_runtime.py",
3742
],
38-
zip_safe=False)
43+
zip_safe=False,
44+
)

0 commit comments

Comments
 (0)