1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type">
<title>Download SQLObject</title>
<link href="layout.css" type="text/css" rel="stylesheet">
</head>
<body>
<div id="page">
<h1 class="doc-title"><a></a></h1>
<div id="navcontainer">
<ul id="navlist">
<li class="pagenav">
<ul>
<li class="page_item">
<a href="index.html" title="Project Home / Index">SQLObject</a>
</li>
<li class="page_item">
<a href="module-index.html" title="sqlobject package and module reference">Modules</a>
</li>
<li>
<a href="community.html" title="Mailing List">Discuss</a>
</li>
<li>
<a href="SQLObject.html">Documentation</a>
</li>
</ul>
</li>
</ul>
</div>
<hr>
<div id="content"><div class="rst-doc">
<h1 class="pudge-member-page-heading">Download SQLObject</h1>
<p>The latest releases are always available on the <a href="https://pypi.python.org/pypi/SQLObject" class="reference external">Python Package Index</a>, and is installable
with <a href="https://pip.pypa.io/en/latest/" class="reference external">pip</a> or <a href="https://setuptools.readthedocs.io/en/latest/easy_install.html" class="reference external">easy_install</a>.</p>
<p>You can install the latest release with:</p>
<pre class="literal-block">
pip install -U SQLObject
</pre>
<p>or:</p>
<pre class="literal-block">
easy_install -U SQLObject
</pre>
<p>You can install the latest version of SQLObject with:</p>
<pre class="literal-block">
easy_install SQLObject==dev
</pre>
<p>You can install the latest bug fixing branch with:</p>
<pre class="literal-block">
easy_install SQLObject==bugfix
</pre>
<p>If you want to require a specific revision (because, for instance, you
need a bugfix that hasn't appeared in a release), you can put this in
your <a href="https://setuptools.readthedocs.io/en/latest/index.html" class="reference external">setuptools</a> using
<tt class="docutils literal">setup.py</tt> file:</p>
<pre class="literal-block">
setup(...
install_requires=["SQLObject==bugfix,>=0.7.1dev-r1485"],
)
</pre>
<p>This says that you <em>need</em> revision 1485 or higher. But it also says
that you can aquire the "bugfix" version to try to get that. In fact,
when you install <tt class="docutils literal"><span class="pre">SQLObject==bugfix</span></tt> you will be installing a
specific version, and "bugfix" is just a kind of label for a way of
acquiring the version (it points to a branch in the repository).</p>
<div class="section" id="repositories">
<h1>Repositories</h1>
<p>The SQLObject <a href="https://git-scm.com/" class="reference external">git</a> repositories are located at
<a href="https://sourceforge.net/p/sqlobject/_list/git" class="reference external">https://sourceforge.net/p/sqlobject/_list/git</a> and
<a href="https://github.com/sqlobject" class="reference external">https://github.com/sqlobject</a></p>
<p>Before switching to git development was performed at the <a href="https://subversion.apache.org/" class="reference external">Subversion</a> repository that is still located at
<a href="http://svn.colorstudy.com/SQLObject" class="reference external">http://svn.colorstudy.com/SQLObject</a></p>
<a href="https://sourceforge.net/projects/sqlobject" class="reference external image-reference"><img src="https://sourceforge.net/sflogo.php?group_id=74338&type=10" alt="Get SQLObject at SourceForge.net. Fast, secure and Free Open Source software downloads" style="width: 80px; height: 15px;" class="noborder align-center"></a>
</div>
</div></div>
<div id="footer">
<p style="float: left;">
built with
<a href="http://lesscode.org/projects/pudge/">pudge/0.1.3</a> |
original design by
<a href="http://blog.ratterobert.com/">ratter / robert</a>
</p>
<div>
<br> <!--
<a name="search">
<form method="get" id="searchform"
action="http://lesscode.org/blog/index.php">
<div>
<input type="text" value="" name="s" id="s" />
<input type="submit" id="searchsubmit" value="Search" />
</div>
</form>
</a> -->
<br>
</div>
</div>
</div>
</body>
</html>
|