From 641e129c9da7acbf5cd4ef89e15fc75adbc8a4c8 Mon Sep 17 00:00:00 2001 From: "Markey, Nigel" Date: Tue, 7 Jan 2020 23:58:57 +0000 Subject: [PATCH] BLD: fix spelling in requirements-dev generator script --- requirements-dev.txt | 2 +- scripts/generate_pip_deps_from_conda.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index f4f5fed82662c..017e6258d9941 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,5 +1,5 @@ # This file is auto-generated from environment.yml, do not modify. -# See that file for comments about the need/usage of each depdendency. +# See that file for comments about the need/usage of each dependency. numpy>=1.15 python-dateutil>=2.6.1 diff --git a/scripts/generate_pip_deps_from_conda.py b/scripts/generate_pip_deps_from_conda.py index 3b14d61ce4254..53a27e8782ad7 100755 --- a/scripts/generate_pip_deps_from_conda.py +++ b/scripts/generate_pip_deps_from_conda.py @@ -92,7 +92,7 @@ def main(conda_fname, pip_fname, compare=False): fname = os.path.split(conda_fname)[1] header = ( f"# This file is auto-generated from {fname}, do not modify.\n" - "# See that file for comments about the need/usage of each depdendency.\n\n" + "# See that file for comments about the need/usage of each dependency.\n\n" ) pip_content = header + "\n".join(pip_deps)