File tree Expand file tree Collapse file tree 5 files changed +7
-5
lines changed Expand file tree Collapse file tree 5 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1212 - uses : actions/checkout@v4
1313
1414 - name : Set up micromamba
15- uses : mamba-org/setup-micromamba@v1.8.1
15+ uses : mamba-org/setup-micromamba@v2
1616 with :
1717 # the create command looks like this:
1818 # `micromamba create -n test-env python=<the corresponding version>`
Original file line number Diff line number Diff line change 77 strategy :
88 matrix :
99 os : [ubuntu-latest, macos-latest]
10- python-version : ["3.8 ", "3.9 ", "3.10 "]
10+ python-version : ["3.9 ", "3.10 ", "3.11 "]
1111
1212 runs-on : ${{ matrix.os }}
1313
1414 steps :
1515 - uses : actions/checkout@v4
1616 - name : Set up micromamba
17- uses : mamba-org/setup-micromamba@v1.8.1
17+ uses : mamba-org/setup-micromamba@v2
1818 with :
1919 # the create command looks like this:
2020 # `micromamba create -n test-env python=<the corresponding version>`
Original file line number Diff line number Diff line change 2626 2.0.1 2.3.0 2.2.1
2727 2.1.0 2.3.0 2.2.1
2828 2.1.1 2.3.0 2.2.1
29+ 2.1.2 2.4.0 2.2.1
Original file line number Diff line number Diff line change 1- __version__ = "2.1.1 "
1+ __version__ = "2.1.2 "
22
33# import all modules
44from . import model
Original file line number Diff line number Diff line change @@ -309,7 +309,8 @@ def chech_kim_api_compatibility():
309309 name = "kimpy" ,
310310 version = get_kimpy_version (),
311311 packages = find_packages (),
312- install_requires = ["numpy" ],
312+ setup_requires = ["pybind11" ],
313+ install_requires = ["numpy" , "pybind11" ],
313314 extras_require = {
314315 "test" : ["pytest" , "ase" ],
315316 },
You can’t perform that action at this time.
0 commit comments