-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build(deps): Bump torch from 1.11.0 to 2.2.0 (#13)
* Build(deps): Bump torch from 1.11.0 to 2.2.0 Bumps [torch](https://github.com/pytorch/pytorch) from 1.11.0 to 2.2.0. - [Release notes](https://github.com/pytorch/pytorch/releases) - [Changelog](https://github.com/pytorch/pytorch/blob/main/RELEASE.md) - [Commits](pytorch/pytorch@v1.11.0...v2.2.0) --- updated-dependencies: - dependency-name: torch dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * update environment * update installation and dependency * update README * fix pydantic --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Han Yang <[email protected]>
- Loading branch information
1 parent
5038952
commit f470e73
Showing
4 changed files
with
31 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from setuptools import setup, Extension | ||
import numpy as np | ||
from Cython.Build import cythonize | ||
|
||
extensions = [ | ||
Extension( | ||
"mattersim.datasets.utils.threebody_indices", | ||
["src/mattersim/datasets/utils/threebody_indices.pyx"], | ||
include_dirs=[np.get_include()] | ||
) | ||
] | ||
|
||
setup( | ||
ext_modules=cythonize(extensions) | ||
) |