Skip to content

Commit

Permalink
main: release_notes.xrst: mention change in pull request #11.
Browse files Browse the repository at this point in the history
fun_speed.py: simplify (see issue 12)
  • Loading branch information
bradbell committed Sep 25, 2024
1 parent e7ea791 commit 3febdb2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions bin/get_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ under_construction='clad fastad xad'
#
# where *build_type* is ``debug`` or ``release`` .
#
# Virtual Environment
# *******************
# environment.sh
# **************
# The following commands set the prefix as a virtual environment:
#
# | build_type=\ *build_type*
Expand Down
4 changes: 1 addition & 3 deletions python/cmpad/fun_speed.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,7 @@ def fun_speed(fun_obj, option, min_time) :
#
# repeat, t_start, t_end, t_diff
repeat = 0
t_start = timeit.default_timer()
t_end = timeit.default_timer()
t_diff = t_end - t_start
t_diff = 0.0
#
# while t_diff < min_time
while t_diff < min_time :
Expand Down
5 changes: 5 additions & 0 deletions xrst/release_notes.xrst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ Release Notes for 2024
mm-dd
*****

09-24
=====
Change the file :ref:`[email protected]` so that it works
with bash version 3 or higher (not version 4 or higher).

09-23
=====
There was an indexing error in the definition of the
Expand Down

0 comments on commit 3febdb2

Please sign in to comment.