-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
71 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- ChangeLog 2024-08-19 13:00:26.144430865 -0400 | ||
+++ ChangeLog-spell-corrected 2024-08-19 12:59:33.866689400 -0400 | ||
@@ -10,7 +10,7 @@ | ||
2024-08-19 Juan Mauricio Matera <[email protected]> | ||
|
||
* pymathics/hello/__main__.py: adding blanklines between </dl> and | ||
- the examples in docstrings (#4) * addiing blanklines between </dl> and the examples in docstrings * Update __main__.py --------- Co-authored-by: R. Bernstein <[email protected]> | ||
+ the examples in docstrings (#4) * adding blanklines between </dl> and the examples in docstrings * Update __main__.py --------- Co-authored-by: R. Bernstein <[email protected]> | ||
|
||
2024-08-19 rocky <[email protected]> | ||
|
||
@@ -95,4 +95,3 @@ | ||
2020-10-30 rocky <[email protected]> | ||
|
||
* A simple PyMathics module A "Hello, World!" PyMathics Function and Symbol definition. Adapted from mmatera's PyMathics "testpymathicsmodule" | ||
- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
7.0.0 | ||
----- | ||
|
||
* Revise for 7.0.0 Mathics3 API; we need to explicilty load builtins | ||
|
||
|
||
1.0.0 | ||
----- | ||
|
||
* First release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#!/bin/bash | ||
function finish { | ||
cd $mathics_hello_owd | ||
} | ||
|
||
# FIXME put some of the below in a common routine | ||
mathics_hello_owd=$(pwd) | ||
trap finish EXIT | ||
|
||
cd $(dirname ${BASH_SOURCE[0]}) | ||
if ! source ./pyenv-versions ; then | ||
exit $? | ||
fi | ||
|
||
cd .. | ||
for version in $PYVERSIONS; do | ||
echo --- $version --- | ||
if ! pyenv local $version ; then | ||
exit $? | ||
fi | ||
make clean && pip install -e . | ||
if ! make check; then | ||
exit $? | ||
fi | ||
echo === $version === | ||
done | ||
finish |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters