Skip to content

Commit 4937160

Browse files
committed
v3.0.0
1 parent 8928bec commit 4937160

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

DSSATTools/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,6 @@
103103
import warnings
104104
warnings.simplefilter('always', DeprecationWarning)
105105
warnings.warn(
106-
'This new version is a major upgrade and will not be backwards compatible with previous versions. If you are running code that was developed using a previous DSSATTools version, then install DSSATTools version 2.1.6',
106+
'DSSATTools version 3.0.0 is a major upgrade and will not be backwards compatible with previous versions. If you are running code that was developed using a previous DSSATTools version, then install DSSATTools version 2.1.6',
107107
DeprecationWarning
108108
)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
setuptools.setup(
1515
name="DSSATTools",
16-
version="3.0.0a",
16+
version="3.0.0",
1717
author="Diego Quintero",
1818
author_email="daquinterop@gmail.com",
1919
description="A DSSAT's Python implementation",

tests/test_run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ def test_alfalfa():
283283
# Open FORAGE.out
284284
forage = pd.read_fwf(
285285
StringIO(dssat.output_files['FORAGE']),
286-
skiprows=1, widths=[5, 9, 3] + [5]*18
286+
skiprows=1, widths=[4, 6, 6, 5, 5, 5, 4] + [6]*14
287287
)
288288
dssat_gui_values = [2151, 3341, 6303, 3555, 4099, 4104, 6056]
289289
assert all([

0 commit comments

Comments
 (0)