Skip to content

Commit 8d8cf5f

Browse files
authored
Merge pull request #309 from timkpaine/main
Remove setup.py, fix dependency path
2 parents 1757596 + 5854bb9 commit 8d8cf5f

3 files changed

Lines changed: 6 additions & 7 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
with:
4141
python-version: ${{ matrix.python-version }}
4242
cache: 'pip'
43-
cache-dependency-path: 'setup.py'
43+
cache-dependency-path: 'pyproject.toml'
4444

4545
- name: Use Node.js ${{ matrix.node-version }}
4646
uses: actions/setup-node@v6

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@ tests: testpy testjs ## run the tests
2828
# Linting #
2929
###########
3030
lintpy: ## lint python with ruff and isort
31-
python -m isort --check nbcelltests setup.py
32-
python -m ruff check nbcelltests setup.py
33-
python -m ruff format --check nbcelltests setup.py
31+
python -m isort --check nbcelltests
32+
python -m ruff check nbcelltests
33+
python -m ruff format --check nbcelltests
3434

3535
lintjs: ## lint javascript with eslint
3636
cd js; jlpm lint
3737

3838
lint: lintpy lintjs ## run linters
3939

4040
fixpy: ## autoformat python with ruff and isort
41-
python -m isort nbcelltests setup.py
42-
python -m ruff format nbcelltests setup.py
41+
python -m isort nbcelltests
42+
python -m ruff format nbcelltests
4343

4444
fixjs: ## autoformat javascript with eslint
4545
cd js; jlpm fix

setup.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)