Skip to content

Commit

Permalink
Merge pull request #261 from VlachosGroup/py312
Browse files Browse the repository at this point in the history
Update requirements.txt to avoid pyyaml 3.12 incompatible versions
  • Loading branch information
JacksonBurns authored Nov 11, 2023
2 parents d57c605 + 56ebe9f commit fed3030
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
os: [ubuntu-latest, windows-latest, macos-latest]

runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -95,4 +95,4 @@ jobs:
with:
password: ${{ secrets.PYPI_API_TOKEN }}
skip-existing: true
verbose: true
verbose: true
2 changes: 1 addition & 1 deletion aimsim/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
from . import chemical_datastructures
from . import utils

__version__ = "2.1.0"
__version__ = "2.1.1"
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ numpy
multiprocess>=0.70
scikit_learn_extra
pandas
PyYAML>=5
# force pyyaml away from specific versions: https://github.com/yaml/pyyaml/issues/724
pyyaml!=6.0.0,!=5.4.0,!=5.4.1,<7
scikit_learn
rdkit
psutil
Expand Down

0 comments on commit fed3030

Please sign in to comment.