Skip to content

Commit 25db326

Browse files
Release 1.0.0
1 parent 3158aa1 commit 25db326

23 files changed

+23
-14
lines changed

INSTALL

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
pip install singledispatch
1+
pip install numpy
2+
pip install singledispatch

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,11 @@ the input programs used to train such models comprise abundant and varied code p
4545

4646
## Usage
4747

48-
To run Cnerator, you need to install the `singledispatch` Python package first:
48+
To run Cnerator, you need to install `numpy` and `singledispatch` Python packages:
4949

5050

5151
``` text
52+
pip install numpy
5253
pip install singledispatch
5354
```
5455

docs/_sources/getting_started.rst.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@ Installation
1414
------------
1515

1616
You need a Python 3.7+ standard implementation.
17-
The only additional package to install is ``singledispatch``:
17+
The only additional packages to install are ``numpy`` and ``singledispatch``:
1818

1919

2020
.. code-block:: bash
2121
22+
pip install numpy
2223
pip install singledispatch
2324
2425

docs/getting_started.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,9 @@ <h1>Getting started<a class="headerlink" href="#getting-started" title="Permalin
173173
<div class="section" id="installation">
174174
<h2>Installation<a class="headerlink" href="#installation" title="Permalink to this headline"></a></h2>
175175
<p>You need a Python 3.7+ standard implementation.
176-
The only additional package to install is <code class="docutils literal notranslate"><span class="pre">singledispatch</span></code>:</p>
177-
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>pip install singledispatch
176+
The only additional packages to install are <code class="docutils literal notranslate"><span class="pre">numpy</span></code> and <code class="docutils literal notranslate"><span class="pre">singledispatch</span></code>:</p>
177+
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>pip install numpy
178+
pip install singledispatch
178179
</pre></div>
179180
</div>
180181
</div>

docs/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
singledispatch
1+
singledispatch
2+
numpy

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def read_file(file_name):
5454
license=__license,
5555
keywords="C language lang code generator",
5656
install_requires=read_lines("requirements.txt"),
57-
#dependency_links=['singledispatch'],
57+
dependency_links=['singledispatch', 'numpy'],
5858
packages=find_packages(),
5959
platforms='any',
6060
classifiers=[
35 Bytes
Binary file not shown.
35 Bytes
Binary file not shown.
35 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)