Skip to content

Commit 6ed9983

Browse files
committed
Remove remnants of configure --init
This does not exists anymore Signed-off-by: Philippe Ombredanne <pombredanne@nexb.com>
1 parent f0d5a29 commit 6ed9983

File tree

3 files changed

+2
-10
lines changed

3 files changed

+2
-10
lines changed

configure

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -137,14 +137,10 @@ cli_help() {
137137
echo " usage: ./configure [options]"
138138
echo
139139
echo The default is to configure for regular use. Use --dev for development.
140-
echo Use the --init option if starting a new project and the project
141-
echo dependencies are not available on thirdparty.aboutcode.org/pypi/
142-
echo and requirements.txt and/or requirements-dev.txt has not been generated.
143140
echo
144141
echo The options are:
145142
echo " --clean: clean built and installed files and exit."
146143
echo " --dev: configure the environment for development."
147-
echo " --init: pull dependencies from PyPI. Used when first setting up a project."
148144
echo " --help: display this help message and exit."
149145
echo
150146
echo By default, the python interpreter version found in the path is used.
@@ -181,7 +177,6 @@ while getopts :-: optchar; do
181177
help ) cli_help;;
182178
clean ) find_python && clean;;
183179
dev ) CFG_REQUIREMENTS="$DEV_REQUIREMENTS";;
184-
init ) ;;
185180
esac;;
186181
esac
187182
done

configure.bat

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -180,14 +180,10 @@ exit /b 0
180180
echo " usage: configure [options]"
181181
echo " "
182182
echo The default is to configure for regular use. Use --dev for development.
183-
echo Use the --init option if starting a new project and the project
184-
echo dependencies are not available on thirdparty.aboutcode.org/pypi/
185-
echo and requirements.txt and/or requirements-dev.txt has not been generated.
186183
echo " "
187184
echo The options are:
188185
echo " --clean: clean built and installed files and exit."
189186
echo " --dev: configure the environment for development."
190-
echo " --init: pull dependencies from PyPI. Used when first setting up a project."
191187
echo " --help: display this help message and exit."
192188
echo " "
193189
echo By default, the python interpreter version found in the path is used.

docs/skeleton-usage.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ customizing the skeleton files to your project:
5454
This will initialize the virtual environment for the project, pull in the
5555
dependencies from PyPI and add them to the virtual environment.
5656

57+
5758
Generating requirements.txt and requirements-dev.txt
5859
----------------------------------------------------
5960

@@ -85,7 +86,7 @@ Note: on Windows, the ``site-packages`` directory is located at ``venv\Lib\site-
8586
.. code-block:: bash
8687
8788
python .\\etc\\scripts\\gen_requirements.py -s .\\venv\\Lib\\site-packages\\
88-
.\configure --init --dev
89+
.\configure --dev
8990
python .\\etc\\scripts\\gen_requirements_dev.py -s .\\venv\\Lib\\site-packages\\
9091
9192

0 commit comments

Comments
 (0)