Skip to content

Commit

Permalink
Correcting an environment marker that is not a function. RE:natcap#1635
Browse files Browse the repository at this point in the history
  • Loading branch information
phargogh committed Sep 26, 2024
1 parent e4cee56 commit 9d46467
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/convert-requirements-to-conda-yml.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def format_full_version(info):
# Environment marker handling is taken straight from
# https://peps.python.org/pep-0508/#environment-markers
ENV_MARKERS = {
"os_name": os.name(),
"os_name": os.name,
"sys_platform": sys.platform,
"platform_machine": platform.machine(),
"platform_python_impl": platform.python_implementation(),
Expand Down

0 comments on commit 9d46467

Please sign in to comment.