Skip to content

Commit bfb66f0

Browse files
authored
Project adminstration stuff (#112)
Repo is now Mathics3-scanner Use @v6 in CI. Bump min scanner version
1 parent ba09f9f commit bfb66f0

File tree

5 files changed

+17
-18
lines changed

5 files changed

+17
-18
lines changed

.github/workflows/isort-and-black-checks.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v5
13-
- name: Set up Python 3.11
14-
uses: actions/setup-python@v5
12+
- uses: actions/checkout@v6
13+
- name: Set up Python 3.13
14+
uses: actions/setup-python@v6
1515
with:
16-
python-version: 3.11
16+
python-version: 3.13
1717
- name: Install click, black and isort
1818
run: pip install 'click==8.2.1' 'black==25.11.0' 'isort==5.13.2'
1919
- name: Run black --check --diff .

.github/workflows/macos.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,21 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [macOS]
15-
python-version: ['3.10', '3.11', '3.12']
15+
python-version: ['3.11', '3.12', '3.13']
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
- name: Set up Python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v5
19+
uses: actions/setup-python@v6
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222
- name: Install dependencies
2323
run: |
2424
brew install asymptote
2525
python3 -m pip install --upgrade pip
26-
# We can comment out after next Mathics-Scanner release
26+
# We can comment out after next Mathics3-Scanner release
2727
# python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
28-
git clone --depth 1 https://github.com/Mathics3/mathics-scanner.git
29-
cd mathics-scanner/
28+
git clone --depth 1 https://github.com/Mathics3/Mathics3-scanner.git
29+
cd Mathics3-scanner/
3030
pip install -e .
3131
bash -x admin-tools/make-JSON-tables.sh
3232
cd ..

.github/workflows/ubuntu.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,9 @@ jobs:
2222
run: |
2323
sudo apt-get update -qq && sudo apt-get install -qq liblapack-dev llvm-dev asymptote
2424
python3 -m pip install --upgrade pip
25-
# We can comment out after next Mathics-Scanner release
26-
# python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
27-
git clone --depth 1 https://github.com/Mathics3/mathics-scanner.git
28-
cd mathics-scanner/
25+
# We can comment out after next Mathics3-Scanner release
26+
git clone --depth 1 https://github.com/Mathics3/Mathics3-scanner.git
27+
cd Mathics3-scanner/
2928
pip install -e .
3029
bash -x admin-tools/make-JSON-tables.sh
3130
cd ..

.github/workflows/windows.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
python3 -m pip install wheel
2626
set LLVM_DIR="C:\Program Files\LLVM"
2727
# We can comment out after next Mathics-Scanner release
28-
python -m pip install -e "Mathics-Scanner[full] @ git+https://github.com/Mathics3/mathics-scanner"
28+
# python -m pip install -e "Mathics-Scanner[full] @ git+https://github.com/Mathics3/mathics-scanner"
2929
pip install -e .
30-
git clone --depth 1 https://github.com/Mathics3/mathics-scanner.git
31-
cd mathics-scanner/
30+
git clone --depth 1 https://github.com/Mathics3/Mathics3-scanner.git
31+
cd Mathics3-scanner/
3232
pip install -e .
3333
bash -x admin-tools/make-JSON-tables.sh
3434
cd ..

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ build-backend = "setuptools.build_meta"
1111
name = "mathicsscript"
1212
description = "Command-line interface to Mathics3"
1313
dependencies = [
14-
"Mathics_Scanner>=2.0.0",
14+
"Mathics_Scanner>2.0.0",
1515
"Mathics3 >= 9.0.0",
1616
"click >= 8.0.0",
1717
"colorama",

0 commit comments

Comments
 (0)