File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,11 @@ Active Expression Implementation for Python using static-byte-code analysis.
5
5
## Installation
6
6
7
7
To use Active Expression you need at least Python 2.7 (earlier version may be supported but not tested) or Python 3.4.
8
- To install the package, you can run the following command :
8
+ To install the package, you can run one of the following commands :
9
9
10
10
```
11
- pip install git+https://github.com/active-expressions/active-expressions-static-python
12
- pip3 install git+https://github.com/active-expressions/active-expressions-static-python
11
+ pip install git+https://github.com/active-expressions/active-expressions-static-python # Python 2.x
12
+ pip3 install git+https://github.com/active-expressions/active-expressions-static-python # Python 3.x
13
13
```
14
14
15
15
Otherwise you can clone this repository and import the ` aexpr.py ` file in the subfoler ` aexpr ` .
Original file line number Diff line number Diff line change 32
32
# For a discussion on single-sourcing the version across setup.py and the
33
33
# project code, see
34
34
# https://packaging.python.org/en/latest/single_source_version.html
35
- version = '1.0 ' , # Required
35
+ version = '1.1 ' , # Required
36
36
37
37
# This is a one-line description or tagline of what your project does. This
38
38
# corresponds to the "Summary" metadata field:
69
69
# py_modules=["my_module"],
70
70
#
71
71
packages = find_packages (exclude = ['contrib' , 'docs' , 'tests' ]), # Required
72
- python_requires = '>3.4'
72
+ python_requires = '>2.0,> 3.4'
73
73
)
You can’t perform that action at this time.
0 commit comments