Skip to content

Commit

Permalink
fix install_requires syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlancaster committed Aug 20, 2023
1 parent 0c6470a commit 439243d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def path_to_src(source_path_list):
package_dir = {"": src_dir},
packages = ["PyPop", "PyPop.xslt"],
package_data={"PyPop.xslt": data_file_paths},
install_requires = ["numpy <= 1.25.2; python_version <= 3.11", "numpy == 1.26b1; python_version > 3.11", "lxml <= 4.9.3", "psutil",
install_requires = ["numpy <= 1.25.2; python_version <= '3.11'", "numpy == 1.26b1; python_version > '3.11'", "lxml <= 4.9.3", "psutil",
"importlib-resources; python_version <= '3.8'", "importlib-metadata; python_version <= '3.8'"],
extras_require={
"test": ['pytest']
Expand Down

0 comments on commit 439243d

Please sign in to comment.