Skip to content

Commit ac7f6d8

Browse files
committed
Merge branch 'main' into 660-purl-next-maven
2 parents d9c8b8d + e23ede7 commit ac7f6d8

File tree

17 files changed

+49
-29
lines changed

17 files changed

+49
-29
lines changed

.github/workflows/pypi-release-minecode-pipeline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ jobs:
2323
run: python -m pip install flot --user
2424

2525
- name: Build binary wheel and source tarball
26-
run: python -m flot --pyproject pyproject-minecode_pipeline.toml --sdist --wheel --output-dir dist/
26+
run: python -m flot --pyproject pyproject-minecode_pipelines.toml --sdist --wheel --output-dir dist/
2727

2828
- name: Publish to PyPI
2929
if: startsWith(github.ref, 'refs/tags')
3030
uses: pypa/gh-action-pypi-publish@release/v1
3131
with:
32-
password: ${{ secrets.PYPI_API_TOKEN_MINECODE_PIPELINE }}
32+
password: ${{ secrets.PYPI_API_TOKEN_MINECODE_PIPELINES }}
3333

3434
- name: Upload built archives
3535
uses: actions/upload-artifact@v4

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ test_matchcode:
140140
test: test_purldb test_matchcode test_toolkit test_clearcode
141141

142142
test_minecode:
143-
${ACTIVATE} ${PYTHON_EXE} -m pytest -vvs minecode_pipeline
143+
${ACTIVATE} ${PYTHON_EXE} -m pytest -vvs minecode_pipelines
144144

145145
shell:
146146
${MANAGE} shell

minecode_pipeline/tests/pipes/__init__.py

Lines changed: 0 additions & 8 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.

minecode_pipeline/miners/pypi.py renamed to minecode_pipelines/miners/pypi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
from packageurl import PackageURL
1515

16-
from minecode_pipeline.utils import get_temp_file
16+
from minecode_pipelines.utils import get_temp_file
1717

1818
"""
1919
Visitors for Pypi and Pypi-like Python package repositories.
File renamed without changes.

minecode_pipeline/pipelines/mine_maven.py renamed to minecode_pipelines/pipelines/mine_maven.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# Visit https://github.com/aboutcode-org/scancode.io for support and download.
2222

2323

24-
from minecode_pipeline.pipes import maven
24+
from minecode_pipelines.pipes import maven
2525
from scanpipe.pipelines.publish_to_federatedcode import PublishToFederatedCode
2626

2727

minecode_pipeline/pipelines/mine_pypi.py renamed to minecode_pipelines/pipelines/mine_pypi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from scanpipe.pipelines import Pipeline
2424
from scanpipe.pipes import federatedcode
2525

26-
from minecode_pipeline.pipes import pypi
26+
from minecode_pipelines.pipes import pypi
2727

2828

2929
class MineandPublishPypiPURLs(Pipeline):

0 commit comments

Comments
 (0)