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
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,17 @@ jobs:
uses: actions/checkout@v3

# Set up Python environment
- name: Set up Python 3.10
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.12'

# Install and validate the supported runtime
- name: Install package with AiiDA 2.8
run: pip install "aiida-core==2.8.*" .

- name: Check dependencies
run: pip check

# Install pre-commit
- name: Install pre-commit
Expand Down
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ classifiers = [
"Development Status :: 5 - Production/Stable",
]
keywords = ["aiidalab", "plugin"]
requires-python = ">=3.8"
requires-python = ">=3.12"
dependencies = [
"aiida-vibroscopy~=1.3.0",
"aiida-phonopy~=1.2.1",
"phonopy~=2.19,<2.26.0", # 2.26 made changes to the build system which fail QE image build (see QE issue #1543)
"aiida-pythonjob~=0.2.5",
"euphonic~=1.3.0",
"aiida-core>=2.8,<3",
"aiida-vibroscopy~=1.5",
"aiida-phonopy~=1.5",
"phonopy>=3,<4",
"euphonic~=1.4.5",
"kaleido",
"weas-widget>=0.2.6"
]
Expand Down
Loading