File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Meta Platforms, Inc. and affiliates. Confidential and proprietary.
2+
3+ from importlib .metadata import PackageNotFoundError , version
4+
5+ try :
6+ __version__ = version ("meta-agents-research-environments" )
7+ except PackageNotFoundError :
8+ # package is not installed
9+ __version__ = "unknown"
Original file line number Diff line number Diff line change 11..
22 Copyright (c) Meta Platforms, Inc. and affiliates.
33 All rights reserved.
4-
4+
55 This source code is licensed under the terms described in the LICENSE file in
66 the root directory of this source tree.
77
@@ -122,8 +122,8 @@ To verify your installation works correctly:
122122
123123 .. code-block :: python
124124
125- import are.simulation
126- print (are.simulation. __version__ )
125+ import are
126+ print (are.__version__ )
127127
128128 2. **Run a Simple Scenario **
129129
You can’t perform that action at this time.
0 commit comments