Skip to content

Commit 2bd332a

Browse files
authored
satisfy oss requirements (#1950)
T263278821
1 parent 8f7e7c3 commit 2bd332a

82 files changed

Lines changed: 525 additions & 26 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/index.md

Lines changed: 1 addition & 1 deletion

packages/fairchem-demo-ocpapi/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ classifiers = [
1919
dependencies = [
2020
"dataclasses-json == 0.6.0",
2121
"inquirer == 3.1.3",
22-
"requests == 2.32.4",
22+
"requests",
2323
"responses == 0.23.2",
2424
"tenacity == 8.2.3",
2525
"tqdm == 4.66.1",
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
"""
2+
Copyright (c) Meta Platforms, Inc. and affiliates.
3+
4+
This source code is licensed under the MIT license found in the
5+
LICENSE file in the root directory of this source tree.
6+
"""
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
1+
"""
2+
Copyright (c) Meta Platforms, Inc. and affiliates.
3+
4+
This source code is licensed under the MIT license found in the
5+
LICENSE file in the root directory of this source tree.
6+
"""
7+
18
from __future__ import annotations
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
"""
2+
Copyright (c) Meta Platforms, Inc. and affiliates.
3+
4+
This source code is licensed under the MIT license found in the
5+
LICENSE file in the root directory of this source tree.
6+
"""

src/fairchem/core/components/benchmark/_single/omol_reducer.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright (c) Meta, Inc. and its affiliates.
2+
Copyright (c) Meta Platforms, Inc. and affiliates.
33
44
This source code is licensed under the MIT license found in the
55
LICENSE file in the root directory of this source tree.
@@ -11,7 +11,10 @@
1111
import json
1212
import os
1313
from glob import glob
14-
from typing import Callable, TypeVar
14+
from typing import TYPE_CHECKING, TypeVar
15+
16+
if TYPE_CHECKING:
17+
from collections.abc import Callable
1518

1619
import pandas as pd
1720

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
"""
2+
Copyright (c) Meta Platforms, Inc. and affiliates.
3+
4+
This source code is licensed under the MIT license found in the
5+
LICENSE file in the root directory of this source tree.
6+
"""
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
"""
2+
Copyright (c) Meta Platforms, Inc. and affiliates.
3+
4+
This source code is licensed under the MIT license found in the
5+
LICENSE file in the root directory of this source tree.
6+
"""

src/fairchem/core/components/dynamics/ase_md_runner.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
"""
2+
Copyright (c) Meta Platforms, Inc. and affiliates.
3+
4+
This source code is licensed under the MIT license found in the
5+
LICENSE file in the root directory of this source tree.
6+
"""
7+
18
from __future__ import annotations
29

310
import time

src/fairchem/core/datasets/common_structures.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
"""
2+
Copyright (c) Meta Platforms, Inc. and affiliates.
3+
4+
This source code is licensed under the MIT license found in the
5+
LICENSE file in the root directory of this source tree.
6+
"""
7+
18
from __future__ import annotations
29

310
import numpy as np

0 commit comments

Comments
 (0)