File tree Expand file tree Collapse file tree 2 files changed +17
-8
lines changed Expand file tree Collapse file tree 2 files changed +17
-8
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,15 @@ The format is inspired by `Keep a Changelog <http://keepachangelog.com/en/0.3.0/
20
20
21
21
* **Version 1.0.0 release **: a minimal app suitable for educational use and not requiring execution from the command line interface.
22
22
23
+ 0.3.2 - 2024-03-06
24
+ ------------------
25
+
26
+ Fixed:
27
+ ^^^^^^
28
+
29
+ * Broken tests and Tk matplotlib backend. Should now work with latest Python
30
+ and requirements.
31
+
23
32
0.3.1 - 2018-05-28
24
33
------------------
25
34
Original file line number Diff line number Diff line change @@ -28,31 +28,31 @@ def vars_default():
28
28
29
29
30
30
@pytest .fixture ()
31
- def vars_1 ():
31
+ def vars_1 (vars_default ):
32
32
"""Return the modified vars for the first custom subspectrum, where
33
33
#C has been changed to 2."""
34
- _vars = vars_default ()
34
+ _vars = vars_default . copy ()
35
35
_vars ['#C' ] = 2
36
36
return _vars
37
37
38
-
39
38
@pytest .fixture ()
40
- def vars_2 ():
39
+ def vars_2 (vars_default ):
41
40
"""Return the modified vars for the second custom subspectrum, where
42
41
#B has been changed to 0, and Vcentr to 1.0."""
43
- _vars = vars_default ()
42
+ _vars = vars_default . copy ()
44
43
_vars ['#B' ] = 0
45
44
_vars ['Vcentr' ] = 1.0
46
45
return _vars
47
46
48
47
49
48
@pytest .fixture ()
50
- def vars_3 ():
49
+ def vars_3 (vars_default ):
51
50
"""Return modified vars for the third custom subspectrum, where #D has
52
51
been changed to 3.
53
52
54
- Created for ss3 and update_all_spectra testing."""
55
- _vars = vars_default ()
53
+ Created for ss3 and update_all_spectra testing.
54
+ """
55
+ _vars = vars_default .copy ()
56
56
_vars ['#D' ] = 3
57
57
return _vars
58
58
You can’t perform that action at this time.
0 commit comments