aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2018-07-01 14:44:24 -0400
committerGitHub <noreply@github.com>2018-07-01 14:44:24 -0400
commit244ff322aec693a437f6a3f7bb6d147811712647 (patch)
tree6627c39eef763af35574cf0ecad2f0e62ad18d68
parenta94ccbf404a79d56f9b171024dee361de9a948da (diff)
parentb32fcfa56d22c68350edbae25fb31fd17efd06a3 (diff)
downloadexternal_python_setuptools-244ff322aec693a437f6a3f7bb6d147811712647.tar.gz
external_python_setuptools-244ff322aec693a437f6a3f7bb6d147811712647.tar.bz2
external_python_setuptools-244ff322aec693a437f6a3f7bb6d147811712647.zip
Merge pull request #1403 from benoit-pierre/fix_developer_guide
docs: fix developer guide
-rw-r--r--CHANGES.rst2
-rw-r--r--changelog.d/1403.doc.rst1
-rw-r--r--docs/developer-guide.txt25
3 files changed, 2 insertions, 26 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 156ba47d..d52ed48f 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -19,7 +19,7 @@ v39.2.0
after any ``distutils`` ``setup_keywords`` calls, allowing them to override
values.
* #1352: Added ``tox`` environment for documentation builds.
-* #1354: Added ``towncrier`` for changelog managment.
+* #1354: Added ``towncrier`` for changelog management.
* #1355: Add PR template.
* #1368: Fixed tests which failed without network connectivity.
* #1369: Added unit tests for PEP 425 compatibility tags support.
diff --git a/changelog.d/1403.doc.rst b/changelog.d/1403.doc.rst
new file mode 100644
index 00000000..1a636085
--- /dev/null
+++ b/changelog.d/1403.doc.rst
@@ -0,0 +1 @@
+Fix developer's guide.
diff --git a/docs/developer-guide.txt b/docs/developer-guide.txt
index 8a967f6c..c011491a 100644
--- a/docs/developer-guide.txt
+++ b/docs/developer-guide.txt
@@ -89,31 +89,6 @@ code changes. See the following for an example news fragment:
$ cat changelog.d/1288.change.rst
Add support for maintainer in PKG-INFO
------------
-Source Code
------------
-
-Grab the code at Github::
-
- $ git clone https://github.com/pypa/setuptools
-
-If you want to contribute changes, we recommend you fork the repository on
-Github, commit the changes to your repository, and then make a pull request
-on Github. If you make some changes, don't forget to:
-
-- add a note in CHANGES.rst
-
-Please commit all changes in the 'master' branch against the latest available
-commit or for bug-fixes, against an earlier commit or release in which the
-bug occurred.
-
-If you find yourself working on more than one issue at a time, Setuptools
-generally prefers Git-style branches, so use Mercurial bookmarks or Git
-branches or multiple forks to maintain separate efforts.
-
-The Continuous Integration tests that validate every release are run
-from this repository.
-
-------
Testing
-------