Skip to content

Commit f7be8e8

Browse files
authored
Merge pull request #5 from lbhsot/fix_nginxpy_develop
remove cmd class nginxpy develop
2 parents 76c4a37 + 24232ae commit f7be8e8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Development
5959

6060
1. Install NGINX in whatever way, make sure ``nginx`` command is available.
6161
2. Checkout source code.
62-
3. Run ``python setup.py develop``.
62+
3. Run ``python setup.py build && python setup.py develop``.
6363
4. Run ``python -c 'import nginx'`` to get NGINX configuration hint.
6464
5. Update NGINX configuration accordingly and reload NGINX.
6565
6. Visit your NGINX site, see NGINX ``error.log`` for now.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ def install_for_development(self):
188188
name='nginxpy',
189189
packages=find_packages(include=['nginx', 'nginx.asyncio', 'nginx.http']),
190190
ext_modules=[nginxpy],
191-
cmdclass=dict(build=nginxpy_build, develop=nginxpy_develop),
191+
cmdclass=dict(build=nginxpy_build),
192192
entry_points='''\
193193
[nginx.modules]
194194
100 = nginx.asyncio:AsyncioModule

0 commit comments

Comments
 (0)