Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions .github/workflows/python_deploy_prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ concurrency:
jobs:
call-workflow-conda-release:
name: Publish production Conda package on JFrog Artifactory
uses: MiraGeoscience/CI-tools/.github/workflows/reusable-python-release_conda_assets.yml@main
if: ${{ github.event_name == 'release' || github.event.inputs.publish-conda == 'true' }}
uses: MiraGeoscience/CI-tools/.github/workflows/reusable-python-release_conda_assets.yml@main
with:
virtual-repo-names: '["public-conda-prod"]'
virtual-repo-names: '["public-noremote-conda-prod"]'
release-tag: ${{ github.event.release.tag_name || github.event.inputs.release-tag }}
secrets:
JFROG_ARTIFACTORY_URL: ${{ secrets.JFROG_ARTIFACTORY_URL }}
Expand Down
2 changes: 1 addition & 1 deletion pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ exclude-too-few-public-methods=
ignored-parents=

# Maximum number of arguments for function / method.
max-args=6
max-args=9 # as long as not hitting too-many-positional-arguments

# Maximum number of attributes for a class (see R0902).
max-attributes=16
Expand Down
6 changes: 5 additions & 1 deletion recipe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,13 @@ source:
path: ../omf

build:
number: 0
number: 1
noarch: python
script: ${{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
python:
entry_points:
- geoh5_to_omf = omf.scripts.geoh5_to_omf:main
- omf_to_geoh5 = omf.scripts.omf_to_geoh5:main

requirements:
host:
Expand Down