Skip to content
Open
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
6 changes: 6 additions & 0 deletions .github/workflows/test_deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,15 @@ jobs:
then
echo "This is not a workflow_dispatch RUN, use master for OQ engine"
python install.py devel --version master
if [[ $EXIT_CODE -ne 0 ]]; then
break
fi
else
echo "This is a workflow_dispatch RUN, use: $GITHUB_INPUT_REF for OQ engine"
python install.py devel --version ${GITHUB_INPUT_REF}
if [[ $EXIT_CODE -ne 0 ]]; then
break
fi
fi
source ~/openquake/bin/activate
cd ..
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test_win64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@ jobs:
Write-Host "python install.py devel --version ${env:BRANCH}"
cd oq-engine
python install.py devel --version ${env:BRANCH}
if ($LASTEXITCODE -ne 0) {
break
}
cd ..
}
else
Expand Down
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description = "Model Building Toolkit"
readme = """
Python and OpenQuake-based Toolkit for the construction of Seismic Source
Models
Copyright (C) 2017-2025 GEM Foundation
Copyright (C) 2017-2026 GEM Foundation
"""
license = { text = "AGPL-3.0-only" }

Expand All @@ -18,6 +18,7 @@ authors = [
]
maintainers = [
{ name = "GEM Foundation", email = "hazard@globalquakemodel.org" },
{ name = "GEM Foundation", email = "hazard@globalquakemodel.org" },
]

keywords = [
Expand Down Expand Up @@ -67,8 +68,9 @@ Documentation = "https://gemsciencetools.github.io/oq-mbtk/index.html"
oqm = "openquake.mbi.__main__:oqm"

[tool.setuptools.packages.find]
namespaces = true
where = ["."]
include = ["openquake*"]
include = ["openquake.*"]

[tool.setuptools.exclude-package-data]
"*" = [
Expand Down
Loading