Skip to content

Commit 743f830

Browse files
authored
Bump version to 3.0.0, remove 2.x references (#2469)
Bumps the Mesa version to 3.0.0, and updates or removes stable
1 parent 60fc1c8 commit 743f830

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@ can be displayed in browser windows or Jupyter.*
2828

2929
## Using Mesa
3030

31-
To install our latest stable release (2.4.x), run:
31+
To install our latest stable release (3.0.x), run:
3232

3333
``` bash
3434
pip install -U mesa
3535
```
3636

37-
To install our latest pre-release (3.0.0 alpha), run:
37+
To install our latest pre-release, run:
3838

3939
``` bash
4040
pip install -U --pre mesa
4141
```
42-
With Mesa 3.0, we don't install all our dependencies anymore by default.
42+
Starting with Mesa 3.0, we don't install all our dependencies anymore by default.
4343
```bash
4444
# You can customize the additional dependencies you need, if you want. Available are:
4545
pip install -U --pre mesa[network,viz]

docs/index.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,17 @@ Mesa allows users to quickly create agent-based models using built-in core compo
3333

3434
## Using Mesa
3535
### Installation Options
36-
37-
To install our latest stable release (2.4.x), run:
36+
To install our latest stable release (3.0.x), run:
3837

3938
```bash
4039
pip install -U mesa
4140
```
41+
To also install our recommended dependencies:
42+
```bash
43+
pip install -U mesa[rec]
44+
```
4245

43-
To install our latest Mesa 3.0 beta with recommended dependencies:
46+
To install our latest pre-release:
4447

4548
```bash
4649
pip install -U --pre mesa[rec]

docs/tutorials/visualization_tutorial.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"cell_type": "markdown",
1010
"metadata": {},
1111
"source": [
12-
"*This version of the visualisation tutorial is updated for Mesa 3.0, and works with Mesa `3.0.0a4` and above. If you are using Mesa 2.3.x, check out the [stable version](https://mesa.readthedocs.io/stable/tutorials/visualization_tutorial.html) of this tutorial on Readthedocs.*\n",
12+
"*This version of the visualisation tutorial is updated for Mesa 3.0, and works with Mesa `3.0.0` and above.*\n",
1313
"\n",
1414
"> **Note:** SolaraViz is experimental and still in active development for Mesa 3.0. While we attempt to minimize them, there might be API breaking changes between Mesa 3.0 and 3.1. There won't be breaking changes between Mesa 3.0.x patch releases.\n",
1515
"\n",

mesa/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
]
2525

2626
__title__ = "mesa"
27-
__version__ = "3.0.0rc0"
27+
__version__ = "3.0.0"
2828
__license__ = "Apache 2.0"
2929
_this_year = datetime.datetime.now(tz=datetime.timezone.utc).date().year
3030
__copyright__ = f"Copyright {_this_year} Project Mesa Team"

0 commit comments

Comments
 (0)