Skip to content

Commit aad5f43

Browse files
authored
Merge pull request #48 from Mathics3/release-9.0
Release 9.0.0
2 parents 15c5a89 + 73ceadb commit aad5f43

File tree

4 files changed

+18
-20
lines changed

4 files changed

+18
-20
lines changed

.github/workflows/consistency-checks.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/ubuntu.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff 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

pymathics/graph/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
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

pyproject.toml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
11
[build-system]
22
requires = [
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
]
129
build-backend = "setuptools.build_meta"
1310

1411
[project]
1512
name = "Mathics3-graph"
1613
description = "Mathics3 Graph Module using NetworkX"
1714
dependencies = [
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",

0 commit comments

Comments
 (0)