Skip to content

Commit

Permalink
prepare for inform upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
Ken Kundert authored and Ken Kundert committed Dec 28, 2022
1 parent 990df84 commit 80396aa
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 16 deletions.
20 changes: 10 additions & 10 deletions clean
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ rm -f ec.*.tgz* ec.spec ec.exe
rm -rf ec.build release
rm -f lg0.ec lg.ec compute-zo .ecrc
rm -f tests/lg0.ec tests/lg.ec tests/compute-zo tests/.ecrc
rm -rf .hypothesis .tox
rm -rf .hypothesis .tox .mypy_cache
for i in */clean
do
if [[ "$i" == '*/clean' ]]
Expand All @@ -21,12 +21,12 @@ do
#echo $i
( cd ${i%/*}; ./clean )
done
for i in */Makefile
do
if [[ "$i" == '*/Makefile' ]]
then
break
fi
#echo $i
( cd ${i%/*}; make clean )
done
# for i in */Makefile
# do
# if [[ "$i" == '*/Makefile' ]]
# then
# break
# fi
# #echo $i
# ( cd ${i%/*}; make clean )
# done
4 changes: 2 additions & 2 deletions doc/create-manual.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@
{complexNumbers}
.. _constants:
.. _ec_constants:
Constants
=========
Expand Down Expand Up @@ -495,7 +495,7 @@
| **$46,485.00**:
.. _comments:
.. _ec_comments:
Comments
========
Expand Down
2 changes: 1 addition & 1 deletion doc/ec.1
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
..
.TH "EC" 1 "2022-01-04" "1.9.0" ""
.TH "EC" 1 "2022-06-29" "1.9.1" ""
.SH NAME
ec \- engineering calculator
.\" :Copyright: public domain
Expand Down
5 changes: 5 additions & 0 deletions doc/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ Latest development release
| Version: 1.9.1
| Released: 2022-06-29
1.10 (2022-12-27)
-----------------
- add caching for bitcoin prices


1.9 (2022-01-04)
----------------
- add :ref:`unit conversions <unit conversions>`.
Expand Down
4 changes: 2 additions & 2 deletions doc/user.rst
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ support complex numbers.



.. _constants:
.. _ec_constants:

Constants
=========
Expand Down Expand Up @@ -566,7 +566,7 @@ directly to the desired units:
| **$46,485.00**:

.. _comments:
.. _ec_comments:

Comments
========
Expand Down
2 changes: 1 addition & 1 deletion engineering_calculator/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def main():
terminate()

# Define utility functions {{{1
highlight = Color("magenta", colorscheme)
highlight = Color("magenta", scheme=colorscheme)

def evaluateLine(calc, line, prompt):
try:
Expand Down

0 comments on commit 80396aa

Please sign in to comment.