Skip to content

Commit

Permalink
Update package name from webqueue2-api to webqueue2api and replace 0.…
Browse files Browse the repository at this point in the history
…9.1 reference with 1.0.0
  • Loading branch information
campb303 committed Jul 1, 2021
1 parent 2e13c9a commit e605dba
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions docs-src/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,21 +28,21 @@ The code is available on [GitHub]({{ config.repo_url }}). Available package vers
```

=== "Install via pip"
To install webqueue2-api 0.9.1, you can run:
To install webqueue2-api 1.0.0, you can run:

```
pip install git+{{ config.repo_url }}@0.9.1#egg=webqueue2-api
pip install git+{{ config.repo_url }}@1.0.0#egg=webqueue2api
```

=== "Install via requirements file"
To install webqueue2-api 0.9.1, place the following line your requirements file:
To install webqueue2-api 1.0.0, place the following line your requirements file:

```bash
echo "git+{{ config.repo_url }}@0.9.1#egg=webqueue2-api" >> requirements.txt
echo "git+{{ config.repo_url }}@1.0.0#egg=webqueue2api" >> requirements.txt
pip install -r requirements.txt
```

If you'd like a version other than 0.9.1 simply replace the that version number with a different version listed on the [releases page]({{ config.repo_url }}/releases).
If you'd like a version other than 1.0.0 simply replace the that version number with a different version listed on the [releases page]({{ config.repo_url }}/releases).

To start the server, run the following while your virtual environment is activated:
```bash
Expand Down
10 changes: 5 additions & 5 deletions docs/Installation/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -440,18 +440,18 @@ <h1 id="installation">Installation<a class="headerlink" href="#installation" tit
</code></pre></div></p>
</div>
<div class="tabbed-set" data-tabs="1:2"><input checked="checked" id="__tabbed_1_1" name="__tabbed_1" type="radio" /><label for="__tabbed_1_1">Install via pip</label><div class="tabbed-content">
<p>To install webqueue2-api 0.9.1, you can run:</p>
<div class="highlight"><pre><span></span><code>pip install git+https://github.itap.purdue.edu/ECN/webqueue2-api@0.9.1#egg=webqueue2-api
<p>To install webqueue2-api 1.0.0, you can run:</p>
<div class="highlight"><pre><span></span><code>pip install git+https://github.itap.purdue.edu/ECN/webqueue2-api@1.0.0#egg=webqueue2api
</code></pre></div>
</div>
<input id="__tabbed_1_2" name="__tabbed_1" type="radio" /><label for="__tabbed_1_2">Install via requirements file</label><div class="tabbed-content">
<p>To install webqueue2-api 0.9.1, place the following line your requirements file:</p>
<div class="highlight"><pre><span></span><code><span class="nb">echo</span> <span class="s2">&quot;git+https://github.itap.purdue.edu/ECN/webqueue2-api@0.9.1#egg=webqueue2-api&quot;</span> &gt;&gt; requirements.txt
<p>To install webqueue2-api 1.0.0, place the following line your requirements file:</p>
<div class="highlight"><pre><span></span><code><span class="nb">echo</span> <span class="s2">&quot;git+https://github.itap.purdue.edu/ECN/webqueue2-api@1.0.0#egg=webqueue2api&quot;</span> &gt;&gt; requirements.txt
pip install -r requirements.txt
</code></pre></div>
</div>
</div>
<p>If you'd like a version other than 0.9.1 simply replace the that version number with a different version listed on the <a href="https://github.itap.purdue.edu/ECN/webqueue2-api/releases">releases page</a>.</p>
<p>If you'd like a version other than 1.0.0 simply replace the that version number with a different version listed on the <a href="https://github.itap.purdue.edu/ECN/webqueue2-api/releases">releases page</a>.</p>
<p>To start the server, run the following while your virtual environment is activated:
<div class="highlight"><pre><span></span><code>gunicorn webqueue2api.api:app
</code></pre></div></p>
Expand Down
2 changes: 1 addition & 1 deletion docs/search/search_index.json

Large diffs are not rendered by default.

Binary file modified docs/sitemap.xml.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def get_all_dependencies():

setup(
name="webqueue2api",
version="0.9.1",
version="1.0.0",
description="A library for managing Purdue ECN's queue system.",
python_requires='>=3.6',
packages=find_packages(where="src"),
Expand Down

0 comments on commit e605dba

Please sign in to comment.