Skip to content

Commit ccad617

Browse files
authored
Merge pull request #141 from PolicyEngine/times
Remove time period bounds
2 parents 4be6192 + 30751a6 commit ccad617

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

changelog_entry.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
- bump: patch
2+
changes:
3+
fixed:
4+
- Removed max and min year bounds for Simulations.

policyengine/simulation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class SimulationOptions(BaseModel):
4343
scope: ScopeType = Field(..., description="The scope of the simulation.")
4444
data: DataType = Field(None, description="The data to simulate.")
4545
time_period: TimePeriodType = Field(
46-
2025, description="The time period to simulate.", ge=2024, le=2035
46+
2025, description="The time period to simulate."
4747
)
4848
reform: ReformType = Field(None, description="The reform to simulate.")
4949
baseline: ReformType = Field(None, description="The baseline to simulate.")

0 commit comments

Comments
 (0)