File tree Expand file tree Collapse file tree 4 files changed +18
-20
lines changed
Expand file tree Collapse file tree 4 files changed +18
-20
lines changed Original file line number Diff line number Diff line change @@ -22,11 +22,11 @@ jobs:
2222 run : |
2323 python -m pip install --upgrade pip
2424 python -m pip install pytest
25- python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
26- git clone https://github.com/Mathics3/mathics-core
27- (cd mathics-core && make)
28- (cd mathics-core && python -m pip install -e .[full])
29- python -m pip install -e git+https://github.com/Mathics3/Mathics3-Module-Base#egg=Mathics3-Module-Base
25+ # python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
26+ # git clone https://github.com/Mathics3/mathics-core
27+ # (cd mathics-core && make)
28+ # (cd mathics-core && python -m pip install -e .[full])
29+ # python -m pip install -e git+https://github.com/Mathics3/Mathics3-Module-Base#egg=Mathics3-Module-Base
3030 - name : Install Pymathics.graph with minimum dependencies
3131 run : |
3232 make develop
Original file line number Diff line number Diff line change @@ -23,15 +23,15 @@ jobs:
2323 python -m pip install --upgrade pip
2424 python -m pip install pytest
2525 # Go over and comment out stuff when next Mathics core and Mathics-scanner are released
26- python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
27- git clone https://github.com/Mathics3/mathics-core
28- (cd mathics-core && pip3 install -e .[full])
29- (cd mathics-core && bash ./admin-tools/make-JSON-tables.sh)
30- python -m pip install -e git+https://github.com/Mathics3/Mathics3-Module-Base#egg=Mathics3-Module-Base
31- python -m pip install -e .
26+ # python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
27+ # git clone https://github.com/Mathics3/mathics-core
28+ # (cd mathics-core && pip3 install -e .[full])
29+ # (cd mathics-core && bash ./admin-tools/make-JSON-tables.sh)
30+ # python -m pip install -e git+https://github.com/Mathics3/Mathics3-Module-Base#egg=Mathics3-Module-Base
3231 - name : install pymathics graph
3332 run : |
34- make develop
33+ python -m pip install -e .[full]
34+ # make develop
3535 - name : Test Mathics3 Module Graph
3636 run : |
3737 make -j3 check
Original file line number Diff line number Diff line change 55# well as importing into Python. That's why there is no
66# space around "=" below.
77# fmt: off
8- __version__ = "8 .0.2dev0 " # noqa
8+ __version__ = "9 .0.0 " # noqa
Original file line number Diff line number Diff line change 11[build-system ]
22requires = [
3- " setuptools>=70.0.0" , # CVE-2024-38335 recommends this
3+ " setuptools" , # CVE-2024-38335 recommends this
4+ " Mathics3>=9.0.0" ,
45 " networkx>=3.0.0" ,
5- " pydot" ,
6- " mpmath>=1.2.0" ,
7- " numpy<1.27" ,
86 " matplotlib" ,
9- " scipy>=1.10.0" ,
10- " sympy>=1.11,<1.13" ,
7+ " Mathics3-Module-Base" ,
118]
129build-backend = " setuptools.build_meta"
1310
1411[project ]
1512name = " Mathics3-graph"
1613description = " Mathics3 Graph Module using NetworkX"
1714dependencies = [
18- " Mathics3>=8 .0.1 " ,
15+ " Mathics3>=9 .0.0 " ,
1916 " Mathics3-Module-Base" ,
17+ " mpmath>=1.2.0" ,
2018 " networkx>=3.0.0" ,
2119 " pydot" ,
2220 " matplotlib" ,
You can’t perform that action at this time.
0 commit comments