Skip to content

Commit fdd32c8

Browse files
committed
Release v0.2.0: explicit behavior registration and docs updates
1 parent 22ca847 commit fdd32c8

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023-2025 The Design Research Collective
3+
Copyright (c) 2023-2026 The Design Research Collective
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
project = "PiperABM"
1414
copyright = "2025, Aslan Noorghasemi, Christopher McComb"
1515
author = "Aslan Noorghasemi, Christopher McComb"
16-
release = "0.1.2"
16+
release = "0.2.0"
1717

1818
# -- General configuration ---------------------------------------------------
1919
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

piperabm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.1.2"
1+
__version__ = "0.2.0"
22

33
from .model import Model
44
from .model import Measurement

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ include = ["piperabm", "piperabm.*"]
1010

1111
[project]
1212
name = "piperabm"
13-
version = "0.1.2"
13+
version = "0.2.0"
1414
description = "An Agent-Based Model Framework for Simulating Resilience in Python"
1515
readme = "README.md"
1616
license = {text = "MIT"}
@@ -20,11 +20,11 @@ authors = [
2020
{ name = "Christopher McComb", email = "ccm@cmu.edu" },
2121
]
2222
dependencies = [
23-
"keepdelta==0.2.0",
24-
"matplotlib",
25-
"networkx",
26-
"numpy",
27-
"scipy",
23+
"keepdelta",
24+
"matplotlib==3.10.1",
25+
"networkx==3.4.2",
26+
"numpy==2.2.5",
27+
"scipy==1.15.2",
2828
]
2929
requires-python = ">=3.10"
3030
classifiers = [

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
keepdelta==0.2.0
1+
keepdelta
22
matplotlib==3.10.1
33
networkx==3.4.2
44
numpy==2.2.5

0 commit comments

Comments
 (0)