Skip to content

Commit

Permalink
Merge pull request #130 from PolicyEngine/fix/install-errors
Browse files Browse the repository at this point in the history
Modify install details to prevent circular deps
  • Loading branch information
anth-volk authored Dec 3, 2024
2 parents f091dce + 3b3201a commit 24959f8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
4 changes: 4 additions & 0 deletions changelog_entry.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- bump: patch
changes:
changed:
- Install order and requirements for policyengine-us
9 changes: 7 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
requires = [
"setuptools>=45",
"wheel",
"setuptools_scm[toml]>=6.2",
]
build-backend = "setuptools.build_meta"

[project]
Expand All @@ -11,8 +15,9 @@ authors = [
{name = "PolicyEngine", email = "[email protected]"},
]
license = {file = "LICENSE"}
requires-python = ">=3.10"
requires-python = ">=3.10, <3.13.0"
dependencies = [
"policyengine_us",
"policyengine_core>=3.14.1",
"requests",
"tqdm",
Expand Down

0 comments on commit 24959f8

Please sign in to comment.