Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update history, version number & dependencies for v0.7.0 #186

Merged
merged 2 commits into from
Jan 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,32 @@
Release History
---------------

## 0.7.0 (2024-01-17)

### Special Notes

- Update Mesa dependency to v2.2
- The pinning of Mesa is now on the major version, instead of the minor version. This means that Mesa-Geo v0.7.0 will work with Mesa v2.2, v2.3, v2.4, etc. but not with Mesa v3.0 or later.

### 🛠 Enhancements made

* create and update rtree spatial index only when needed by @wang-boyu in https://github.com/projectmesa/mesa-geo/pull/179

### 🔧 Maintenance

* fix link to examples by @wang-boyu in https://github.com/projectmesa/mesa-geo/pull/167
* Correct link to GeoSchelling example and update copyright string by @Holzhauer in https://github.com/projectmesa/mesa-geo/pull/175
* fix rtd build error and upgrade to python 3.9 by @wang-boyu in https://github.com/projectmesa/mesa-geo/pull/176
* update pre-commit and ga workflows to be consistent with mesa by @wang-boyu in https://github.com/projectmesa/mesa-geo/pull/181
* add config file to automatically generate release notes by @wang-boyu in https://github.com/projectmesa/mesa-geo/pull/184
* update ga workflows to be consistent with mesa by @wang-boyu in https://github.com/projectmesa/mesa-geo/pull/185

## New Contributors

* @Holzhauer made their first contribution in https://github.com/projectmesa/mesa-geo/pull/175

**Full Changelog**: https://github.com/projectmesa/mesa-geo/compare/v0.6.0...v0.7.0

## 0.6.0 (2023-09-13)

### Special Notes
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@
# built documents.
#
# The short X.Y version.
version = "0.6.0"
version = "0.7.0"
# The full version, including alpha/beta/rc tags.
release = "0.6.0"
release = "0.7.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion mesa_geo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
]

__title__ = "Mesa-Geo"
__version__ = "0.6.0"
__version__ = "0.7.0"
__license__ = "Apache 2.0"
_this_year = datetime.datetime.now(tz=datetime.timezone.utc).date().year
__copyright__ = f"Copyright {_this_year} Project Mesa-Geo Team"
10 changes: 2 additions & 8 deletions mesa_geo/raster_layers.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,8 @@
import itertools
import math
import uuid
from typing import (
Any,
Iterable,
Iterator,
Sequence,
cast,
overload,
)
from collections.abc import Iterable, Iterator, Sequence
from typing import Any, cast, overload

import numpy as np
import rasterio as rio
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
requires = [
"setuptools",
"wheel",
"mesa~=2.1.0",
"mesa~=2.2",
wang-boyu marked this conversation as resolved.
Show resolved Hide resolved
]
build-backend = "setuptools.build_meta"

Expand Down Expand Up @@ -54,5 +54,5 @@ extend-ignore = [
"ISC001", # ruff format asks to disable this feature
]
extend-exclude = ["docs", "build"]
# Hardcode to Python 3.8.
target-version = "py38"
# Hardcode to Python 3.9.
target-version = "py39"
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ classifiers =
Natural Language :: English

[options]
python_requires = >=3.8
python_requires = >=3.9
packages = find:
include_package_data = True
install_requires =
Expand Down