Skip to content

Commit

Permalink
Remove upper limit on monty version
Browse files Browse the repository at this point in the history
  • Loading branch information
rashatwi committed Mar 17, 2024
1 parent 7938619 commit a81fda0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
from setuptools import setup, find_namespace_packages, Extension
from setuptools.command.build_ext import build_ext as _build_ext

import site
import sys
site.ENABLE_USER_SITE = "--user" in sys.argv[1:]

class build_ext(_build_ext):
"""Extension builder that checks for numpy before install."""
Expand Down Expand Up @@ -104,7 +107,7 @@ def finalize_options(self):
"numpy>=1.20.1",
"requests",
"ruamel.yaml>=0.15.6",
"monty>=3.0.2,<=2023.5.8",
"monty>=3.0.2",
"scipy>=1.5.0",
"tabulate",
"spglib>=1.9.9.44",
Expand Down

0 comments on commit a81fda0

Please sign in to comment.