File tree 5 files changed +23
-9
lines changed
5 files changed +23
-9
lines changed Original file line number Diff line number Diff line change 1
1
sudo : required
2
2
language : python
3
+ dist : xenial # Required for Python 3.7
4
+ cache : pip
5
+
3
6
python :
4
- - " 2.7"
5
- - " 3.5"
6
7
- " 3.6"
8
+ - " 3.7"
7
9
8
10
install :
9
- - pip install .[tensorflow-cpu]
10
- - pip install flake8
11
+ - pip install --upgrade pip
12
+ - pip install --progress-bar off .[tensorflow-cpu]
13
+ - pip install flake8==3.7.7
14
+ - pip install pytest
11
15
12
16
script :
13
17
# stop the build if there are Python syntax errors or undefined names
@@ -20,7 +24,7 @@ script:
20
24
jobs :
21
25
include :
22
26
- stage : docs
23
- python : " 3.6 "
27
+ python : " 3.7 "
24
28
install :
25
29
- pip install --upgrade pip
26
30
- pip install --progress-bar off -r requirements.txt
Original file line number Diff line number Diff line change
1
+ ## Unreleased
2
+
3
+ ### New features
4
+
5
+ * Support only Python 3.6 and 3.7. Drop support of older Python versions.
6
+
7
+ ### Feature improvements
8
+
9
+ ### Fixes
1
10
2
11
## [ v0.2.3] ( https://github.com/asyml/texar/releases/tag/v0.2.3 ) (2019-09-22)
3
12
Original file line number Diff line number Diff line change @@ -111,6 +111,8 @@ cd texar
111
111
pip install .
112
112
```
113
113
114
+ ** Note** : Texar>0.2.3 requires Python 3.6 or 3.7. To use with older Python versions, please use Texar<=0.2.3
115
+
114
116
### Getting Started
115
117
* [ Examples] ( ./examples )
116
118
* [ Documentation] ( https://texar.readthedocs.io )
Original file line number Diff line number Diff line change 15
15
16
16
setuptools .setup (
17
17
name = "texar" ,
18
- version = "0.2.3 " ,
18
+ version = "0.2.4-unreleased " ,
19
19
url = "https://github.com/asyml/texar" ,
20
20
21
21
description = "Toolkit for Machine Learning and Text Generation" ,
54
54
'Intended Audience :: Science/Research' ,
55
55
'Operating System :: OS Independent' ,
56
56
'Programming Language :: Python' ,
57
- 'Programming Language :: Python :: 2.7' ,
58
- 'Programming Language :: Python :: 3.5' ,
59
57
'Programming Language :: Python :: 3.6' ,
58
+ 'Programming Language :: Python :: 3.7' ,
60
59
],
61
60
)
Original file line number Diff line number Diff line change 14
14
15
15
_MAJOR = "0"
16
16
_MINOR = "2"
17
- _REVISION = "3 "
17
+ _REVISION = "4-unreleased "
18
18
19
19
VERSION_SHORT = "{0}.{1}" .format (_MAJOR , _MINOR )
20
20
VERSION = "{0}.{1}.{2}" .format (_MAJOR , _MINOR , _REVISION )
You can’t perform that action at this time.
0 commit comments