Skip to content
Closed
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: 4 additions & 2 deletions .github/workflows/linux_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
inputs:
git-ref:
description: Git Ref
default: master
default: main
required: true
debug_enabled:
type: boolean
Expand Down Expand Up @@ -34,8 +34,10 @@ jobs:
timeout-minutes: 60
if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }}
- name: Install Dependencies of OpenQuake engine
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
curl -L -O https://github.com/gem/oq-engine/raw/master/install.py
curl -L -O https://raw.githubusercontent.com/gem/oq-engine/refs/heads/GH_TOKEN/install.py
python install.py user --version=master
- name: Install vmtk Package
run: |
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/macos_arm_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
inputs:
git-ref:
description: Git Ref
default: master
default: main
required: true
schedule:
- cron: "0 3 * * 0"
Expand All @@ -25,8 +25,10 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies of OpenQuake engine
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
curl -L -O https://github.com/gem/oq-engine/raw/master/install.py
curl -L -O https://raw.githubusercontent.com/gem/oq-engine/refs/heads/GH_TOKEN/install.py
python install.py user --version=master
- name: Install vmtk Package
run: |
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/windows_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
inputs:
git-ref:
description: Git Ref
default: master
default: main
required: true
schedule:
- cron: "0 2 * * 0"
Expand All @@ -25,8 +25,10 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies of OpenQuake engine
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
curl.exe -LO https://github.com/gem/oq-engine/raw/master/install.py
curl -L -O https://raw.githubusercontent.com/gem/oq-engine/refs/heads/GH_TOKEN/install.py
python install.py user --version=master
- name: Install vmtk Package
run: |
Expand Down
20 changes: 10 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,27 +35,27 @@ classifiers = [
"Topic :: Scientific/Engineering",
]

requires-python = ">=3.10, <3.13"
requires-python = ">=3.11, <3.14"
dependencies = [
"seaborn >= 0.13.0",
"seaborn >= 0.13.0",
"ipykernel >= 4.8.0",
"ipython >= 6.2.0",
"jupyter_client >= 5.0.0",
"notebook >= 5.0.0",
"pyproj >= 3.6.1",
"scipy < 1.14.0",
"matplotlib >= 3.8.2",
"numpy >= 1.26.2",
"numba >= 0.58.1",
"pandas >= 2.0.3",
"pyproj >= 3.7.2",
"scipy > 1.15.3",
"matplotlib >= 3.10.1",
"numpy >= 2.2.6",
"numba >= 0.61.2",
"pandas >= 2.2.3",
"statsmodels >= 0.14.4",
"pydantic >= 2.10.6 ",
]


[project.urls]
Homepage = "https://github.com/GEMScienceTools/vulnerability-toolkit"
Repository = "https://github.com/GEMScienceTools/vulnerability-toolkit"
Homepage = "https://github.com/GEMScienceTools/oq-vmtk"
Repository = "https://github.com/GEMScienceTools/oq-vmtk"
Documentation = " "

[tool.setuptools.packages.find]
Expand Down
Loading