Skip to content

Commit

Permalink
Remove/fix various references to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dairiki committed Sep 22, 2021
1 parent 38a9822 commit 7ddc2fe
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-py-3.9-pip-${{ hashFiles('**/setup.py') }}
key: ${{ runner.os }}-py-3.9-pip-${{ hashFiles('**/setup.cfg') }}
- uses: actions/setup-node@v2
with:
node-version: "14"
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
uses: actions/cache@v2
with:
path: ${{ matrix.path }}
key: ${{ runner.os }}-py-${{ matrix.python }}-pip-${{ hashFiles('**/setup.py') }}
key: ${{ runner.os }}-py-${{ matrix.python }}-pip-${{ hashFiles('**/setup.cfg') }}
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ test-all: test-js
tox

# This creates source distribution and a wheel.
dist: build-js setup.cfg setup.py MANIFEST.in
dist: build-js setup.cfg MANIFEST.in
rm -r build dist
python setup.py sdist bdist_wheel
python -m build

# Before making a release, CHANGES.md needs to be updated and
# a tag should be created (and pushed with `git push --tags`).
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ deps =
pylint==2.7
pytest
commands =
pylint {posargs:lektor setup.py tests}
pylint {posargs:lektor tests}

[flake8]
max-line-length = 91
Expand Down

0 comments on commit 7ddc2fe

Please sign in to comment.