Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/consistency-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install pytest
python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
git clone https://github.com/Mathics3/mathics-core
(cd mathics-core && make)
(cd mathics-core && python -m pip install -e .[full])
python -m pip install -e git+https://github.com/Mathics3/Mathics3-Module-Base#egg=Mathics3-Module-Base
# python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
# git clone https://github.com/Mathics3/mathics-core
# (cd mathics-core && make)
# (cd mathics-core && python -m pip install -e .[full])
# python -m pip install -e git+https://github.com/Mathics3/Mathics3-Module-Base#egg=Mathics3-Module-Base
- name: Install Pymathics.graph with minimum dependencies
run: |
make develop
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ jobs:
python -m pip install --upgrade pip
python -m pip install pytest
# Go over and comment out stuff when next Mathics core and Mathics-scanner are released
python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
git clone https://github.com/Mathics3/mathics-core
(cd mathics-core && pip3 install -e .[full])
(cd mathics-core && bash ./admin-tools/make-JSON-tables.sh)
python -m pip install -e git+https://github.com/Mathics3/Mathics3-Module-Base#egg=Mathics3-Module-Base
python -m pip install -e .
# python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
# git clone https://github.com/Mathics3/mathics-core
# (cd mathics-core && pip3 install -e .[full])
# (cd mathics-core && bash ./admin-tools/make-JSON-tables.sh)
# python -m pip install -e git+https://github.com/Mathics3/Mathics3-Module-Base#egg=Mathics3-Module-Base
- name: install pymathics graph
run: |
make develop
python -m pip install -e .[full]
# make develop
- name: Test Mathics3 Module Graph
run: |
make -j3 check
2 changes: 1 addition & 1 deletion pymathics/graph/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# well as importing into Python. That's why there is no
# space around "=" below.
# fmt: off
__version__="8.0.2dev0" # noqa
__version__="9.0.0" # noqa
12 changes: 5 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
[build-system]
requires = [
"setuptools>=70.0.0", # CVE-2024-38335 recommends this
"setuptools", # CVE-2024-38335 recommends this
"Mathics3>=9.0.0",
"networkx>=3.0.0",
"pydot",
"mpmath>=1.2.0",
"numpy<1.27",
"matplotlib",
"scipy>=1.10.0",
"sympy>=1.11,<1.13",
"Mathics3-Module-Base",
]
build-backend = "setuptools.build_meta"

[project]
name = "Mathics3-graph"
description = "Mathics3 Graph Module using NetworkX"
dependencies = [
"Mathics3>=8.0.1",
"Mathics3>=9.0.0",
"Mathics3-Module-Base",
"mpmath>=1.2.0",
"networkx>=3.0.0",
"pydot",
"matplotlib",
Expand Down