Skip to content

Commit

Permalink
Use compatible-release specifier for dependency versions (NREL#748)
Browse files Browse the repository at this point in the history
* switch to compatible version

* missing equals

* relax some reqs
  • Loading branch information
paulf81 authored Nov 30, 2023
1 parent 34a7e0c commit e1dd6b7
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,19 @@
REQUIRED = [
# simulation
"attrs",
"pyyaml",
"numexpr",
"numpy>=1.20",
"scipy>=1.1",
"pyyaml~=6.0",
"numexpr~=2.0",
"numpy~=1.20",
"scipy~=1.1",

# tools
"matplotlib>=3",
"pandas",
"shapely",
"matplotlib~=3.0",
"pandas~=2.0",
"shapely~=2.0",

# utilities
"coloredlogs>=10.0",
"flatten_dict",
"coloredlogs~=10.0",
"flatten_dict~=0.0",
]

# What packages are optional?
Expand Down

0 comments on commit e1dd6b7

Please sign in to comment.