aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/python3.rb
diff options
context:
space:
mode:
authorsamueljohn2012-10-04 17:23:14 +0200
committerAdam Vandenberg2012-10-19 18:57:13 -0700
commit0c762248b68deacc55e90c17e45e5902074a7810 (patch)
tree3aca9b18bfac26183203630a4c652f27611aea24 /Library/Formula/python3.rb
parent0f4a4af5023618b23c8c451a1c7cf0b42629de71 (diff)
downloadhomebrew-0c762248b68deacc55e90c17e45e5902074a7810.tar.bz2
python3: 3.3.0
Closes #15297. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/python3.rb')
-rw-r--r--Library/Formula/python3.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Formula/python3.rb b/Library/Formula/python3.rb
index d51043564..f4d3218a7 100644
--- a/Library/Formula/python3.rb
+++ b/Library/Formula/python3.rb
@@ -2,7 +2,7 @@ require 'formula'
require Formula.path("python") # For TkCheck requirement
# Python3 is the new language standard, not just a new revision.
-# It's somewhat incompatible to Python 2.x, therefore, the executable
+# It's somewhat incompatible with Python 2.x, therefore, the executable
# "python" will always point to the 2.x version which you can get by
# `brew install python`.
@@ -18,9 +18,9 @@ end
class Python3 < Formula
homepage 'http://www.python.org/'
- url 'http://python.org/ftp/python/3.2.3/Python-3.2.3.tar.bz2'
- sha1 '4c2d562a0681ba27bc920500050e2f08de224311'
- VER='3.2' # The <major>.<minor> is used so often.
+ url 'http://python.org/ftp/python/3.3.0/Python-3.3.0.tar.bz2'
+ sha1 '3e1464bc2c1dfa74287bc58da81168f50b0ae5c7'
+ VER='3.3' # The <major>.<minor> is used so often.
depends_on TkCheck.new
depends_on 'pkg-config' => :build