Skip to content

Commit 880a961

Browse files
committed
use PyPI in CI
1 parent 15c5a89 commit 880a961

File tree

3 files changed

+10
-17
lines changed

3 files changed

+10
-17
lines changed

.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: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,14 @@
11
[build-system]
22
requires = [
3-
"setuptools>=70.0.0", # CVE-2024-38335 recommends this
4-
"networkx>=3.0.0",
5-
"pydot",
6-
"mpmath>=1.2.0",
7-
"numpy<1.27",
8-
"matplotlib",
9-
"scipy>=1.10.0",
10-
"sympy>=1.11,<1.13",
3+
"setuptools", # CVE-2024-38335 recommends this
114
]
125
build-backend = "setuptools.build_meta"
136

147
[project]
158
name = "Mathics3-graph"
169
description = "Mathics3 Graph Module using NetworkX"
1710
dependencies = [
18-
"Mathics3>=8.0.1",
11+
"Mathics3>=9.0.0",
1912
"Mathics3-Module-Base",
2013
"networkx>=3.0.0",
2114
"pydot",

0 commit comments

Comments
 (0)