Skip to content

Commit 0fbb911

Browse files
committed
removing two broken links
1 parent 21ce770 commit 0fbb911

File tree

4 files changed

+10
-19
lines changed

4 files changed

+10
-19
lines changed

all.html

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4823,13 +4823,10 @@ <h2>Installing Python dependencies</h2>
48234823
<a href="https://pypi.python.org/pypi">PyPi</a> repository. </p>
48244824
<h2>requirements.txt</h2>
48254825
<p>The pip convention for specifying application dependencies is with a
4826-
<a href="http://www.pip-installer.org/en/1.4.1/cookbook.html#requirements-files">requirements.txt</a>
4827-
file. When you build a Python web application you should include a
4828-
requirements.txt file. </p>
4826+
requirements.txt file. When you build a Python web application you
4827+
should include a requirements.txt file. </p>
48294828
<p>Python projects' dependencies for a web application should be specified in the
4830-
requirements.txt with
4831-
<a href="https://devcenter.heroku.com/articles/python-pip">pegged dependencies</a> like
4832-
the following:</p>
4829+
requirements.txt with pegged dependencies like the following:</p>
48334830
<div class="highlight"><pre>django==1.6
48344831
bpython==0.12
48354832
django-braces==0.2.1

application-dependencies.html

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,10 @@ <h2>Installing Python dependencies</h2>
9595
<a href="https://pypi.python.org/pypi">PyPi</a> repository. </p>
9696
<h2>requirements.txt</h2>
9797
<p>The pip convention for specifying application dependencies is with a
98-
<a href="http://www.pip-installer.org/en/1.4.1/cookbook.html#requirements-files">requirements.txt</a>
99-
file. When you build a Python web application you should include a
100-
requirements.txt file. </p>
98+
requirements.txt file. When you build a Python web application you
99+
should include a requirements.txt file. </p>
101100
<p>Python projects' dependencies for a web application should be specified in the
102-
requirements.txt with
103-
<a href="https://devcenter.heroku.com/articles/python-pip">pegged dependencies</a> like
104-
the following:</p>
101+
requirements.txt with pegged dependencies like the following:</p>
105102
<div class="highlight"><pre>django==1.6
106103
bpython==0.12
107104
django-braces==0.2.1

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-06-11T08:34:19Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-06-11T10:12:27Z</updated></feed>

source/content/pages/07-web-app-deployment/09-app-dependencies.markdown

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,14 +74,11 @@ Pip downloads and installs application dependencies from the central
7474

7575
## requirements.txt
7676
The pip convention for specifying application dependencies is with a
77-
[requirements.txt](http://www.pip-installer.org/en/1.4.1/cookbook.html#requirements-files)
78-
file. When you build a Python web application you should include a
79-
requirements.txt file.
77+
requirements.txt file. When you build a Python web application you
78+
should include a requirements.txt file.
8079

8180
Python projects' dependencies for a web application should be specified in the
82-
requirements.txt with
83-
[pegged dependencies](https://devcenter.heroku.com/articles/python-pip) like
84-
the following:
81+
requirements.txt with pegged dependencies like the following:
8582

8683
django==1.6
8784
bpython==0.12

0 commit comments

Comments
 (0)