Skip to content

Commit

Permalink
Merge pull request #188 from ChiahsinChu/devel
Browse files Browse the repository at this point in the history
fix bug in ver requirements
  • Loading branch information
KuangYu authored Oct 13, 2024
2 parents 079b9b6 + 3e2527d commit f3e02fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_openmm_dmff_plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install Dependencies
run: |
source $CONDA/bin/activate
conda create -n dmff_omm -y python=${{ matrix.python-version }} numpy openmm=7.7 -c conda-forge
conda create -n dmff_omm -y python=${{ matrix.python-version }} numpy=1.* openmm=7.7 -c conda-forge
conda activate dmff_omm
conda install -y libtensorflow_cc=2.9.1 -c conda-forge
pip install setuptools==59.5.0
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
numpy>=1.18
numpy>=1.18, <2
mkdocs>=1.3.0
mkdocs-autorefs>=0.4.1
mkdocs-gen-files>=0.3.4
mkdocs-literate-nav>=0.4.1
mkdocstrings>=0.19.0
mkdocstrings-python>=0.7.0
pygments>=2.12
jax>=0.4.1
jax>=0.4.1, <=0.4.20
jaxlib>=0.4.1
pymbar>=4.0.0
tqdm
Expand Down

0 comments on commit f3e02fe

Please sign in to comment.