forked from gmggroup/omf-python
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/release/3.3.0' into develop
keep develop version 3.4.0
- Loading branch information
Showing
5 changed files
with
374 additions
and
228 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Deploy python package in development | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' # Push events to every version tag (eg. v1.0.0) | ||
|
||
jobs: | ||
call-workflow-conda-publish: | ||
name: Publish development conda package on JFrog Artifactory | ||
uses: MiraGeoscience/CI-tools/.github/workflows/reusable-python-publish_conda_package.yml@main | ||
with: | ||
package-name: 'mira-omf' | ||
python-version: '3.10' | ||
virtual-repo-names: '["public-conda-dev"]' | ||
secrets: | ||
JFROG_ARTIFACTORY_URL: ${{ secrets.JFROG_ARTIFACTORY_URL }} | ||
JFROG_ARTIFACTORY_TOKEN: ${{ secrets.JFROG_ARTIFACTORY_TOKEN }} | ||
call-workflow-pypi-publish: | ||
name: Publish development pypi package on JFrog Artifactory | ||
uses: MiraGeoscience/CI-tools/.github/workflows/reusable-python-publish_pypi_package.yml@main | ||
with: | ||
package-manager: 'poetry' | ||
package-name: 'mira-omf' | ||
version-tag: ${{ github.ref_name }} | ||
python-version: '3.10' | ||
virtual-repo-names: '["public-pypi-dev"]' | ||
secrets: | ||
JFROG_ARTIFACTORY_URL: ${{ secrets.JFROG_ARTIFACTORY_URL }} | ||
JFROG_ARTIFACTORY_TOKEN: ${{ secrets.JFROG_ARTIFACTORY_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Deploy python package in production | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
call-workflow-conda-publish: | ||
name: Publish production conda package on JFrog Artifactory | ||
uses: MiraGeoscience/CI-tools/.github/workflows/reusable-python-publish_conda_package.yml@main | ||
with: | ||
package-name: 'mira-omf' | ||
python-version: '3.10' | ||
virtual-repo-names: '["public-conda-prod"]' | ||
secrets: | ||
JFROG_ARTIFACTORY_URL: ${{ secrets.JFROG_ARTIFACTORY_URL }} | ||
JFROG_ARTIFACTORY_TOKEN: ${{ secrets.JFROG_ARTIFACTORY_TOKEN }} | ||
call-workflow-pypi-publish: | ||
name: Publish production pypi package on JFrog Artifactory | ||
uses: MiraGeoscience/CI-tools/.github/workflows/reusable-python-publish_pypi_package.yml@main | ||
with: | ||
package-manager: 'poetry' | ||
package-name: 'mira-omf' | ||
version-tag: ${{ github.ref_name }} | ||
python-version: '3.10' | ||
virtual-repo-names: '["public-pypi-prod"]' | ||
secrets: | ||
JFROG_ARTIFACTORY_URL: ${{ secrets.JFROG_ARTIFACTORY_URL }} | ||
JFROG_ARTIFACTORY_TOKEN: ${{ secrets.JFROG_ARTIFACTORY_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{% set name = "mira-omf" %} | ||
{% set version = "3.4.0a1" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
path: ../omf | ||
|
||
build: | ||
noarch: python | ||
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation | ||
number: 0 | ||
|
||
requirements: | ||
host: | ||
- python >=3.10.0,<3.11 | ||
- poetry-core >=1.0.0 | ||
- setuptools | ||
- pip | ||
run: | ||
- python >=3.9.0,<3.11 | ||
- numpy >=1.26.0,<1.27.0 | ||
- properties >=0.6 | ||
- pypng 0.20220715.* | ||
- six >=1.16.0 | ||
- vectormath >=0.2.0 | ||
- geoh5py >=0.9.1a0.dev0,<0.11.0a0.dev0 | ||
|
||
about: | ||
license: MIT | ||
license_file: | ||
- LICENSE | ||
|
||
extra: | ||
recipe-maintainers: | ||
- SophieCurinier | ||
- sebhmg |
Oops, something went wrong.