Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/python_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,26 +26,26 @@
jobs:
call-workflow-static-analysis:
name: Static analysis
uses: MiraGeoscience/CI-tools/.github/workflows/reusable-python-static_analysis.yml@v2

Check failure on line 29 in .github/workflows/python_analysis.yml

View workflow job for this annotation

GitHub Actions / Zizmor analysis (annotate) / Security Scan

unpinned-uses

python_analysis.yml:29: unpinned action reference: action is not pinned to a hash (required by blanket policy)
permissions:
contents: read
pull-requests: read
with:
package-manager: 'poetry'
app-name: 'omf'
python-version: '3.10'
python-version: '3.12'
call-workflow-pytest:
name: Pytest
uses: MiraGeoscience/CI-tools/.github/workflows/reusable-python-pytest.yml@v2

Check failure on line 39 in .github/workflows/python_analysis.yml

View workflow job for this annotation

GitHub Actions / Zizmor analysis (annotate) / Security Scan

unpinned-uses

python_analysis.yml:39: unpinned action reference: action is not pinned to a hash (required by blanket policy)
permissions:
contents: read
pull-requests: read
with:
package-manager: 'poetry'
python-versions: '["3.10", "3.11", "3.12"]'
python-versions: '["3.12", "3.13", "3.14"]'
os: '["ubuntu-latest", "windows-latest"]'
cache-number: 1
codecov-reference-python-version: '3.10'
codecov-reference-python-version: '3.12'
codecov-reference-os: '["windows-latest"]'
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/python_deploy_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
jobs:
call-workflow-conda-publish:
name: Publish development conda package on JFrog Artifactory
uses: MiraGeoscience/CI-tools/.github/workflows/reusable-python-publish_rattler_package.yml@v2

Check failure on line 17 in .github/workflows/python_deploy_dev.yml

View workflow job for this annotation

GitHub Actions / Zizmor analysis (annotate) / Security Scan

unpinned-uses

python_deploy_dev.yml:17: unpinned action reference: action is not pinned to a hash (required by blanket policy)
permissions:
contents: write
with:
package-name: 'mira-omf'
python-version: '3.10'
python-version: '3.12'
source-repo-names: '["public-noremote-conda-dev"]'
conda-channels: '["conda-forge"]'
publish-repo-names: '["public-noremote-conda-dev"]'
Expand All @@ -28,14 +28,14 @@
JFROG_ARTIFACTORY_TOKEN: ${{ secrets.JFROG_ARTIFACTORY_TOKEN }}
call-workflow-pypi-publish:
name: Publish development pypi package (JFrog Artifactory, TestPyPI)
uses: MiraGeoscience/CI-tools/.github/workflows/reusable-python-publish_pypi_package.yml@v2

Check failure on line 31 in .github/workflows/python_deploy_dev.yml

View workflow job for this annotation

GitHub Actions / Zizmor analysis (annotate) / Security Scan

unpinned-uses

python_deploy_dev.yml:31: unpinned action reference: action is not pinned to a hash (required by blanket policy)
permissions:
contents: write
with:
package-manager: 'poetry'
package-name: 'mira-omf'
version-tag: ${{ github.ref_name }}
python-version: '3.10'
python-version: '3.12'
virtual-repo-names: '["public-pypi-dev", "test-pypi"]'
secrets:
JFROG_ARTIFACTORY_URL: ${{ secrets.JFROG_ARTIFACTORY_URL }}
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ repos:
hooks:
- id: mypy
additional_dependencies: [
# numpy==1.26.*, # TODO: fix mypy errors related to numpy
numpy==2.4.*, # TODO: fix mypy errors related to numpy
tomli, # to read config from pyproject.toml
types-six,
types-toml,
Expand Down
Loading
Loading