File tree 4 files changed +14
-9
lines changed
4 files changed +14
-9
lines changed Original file line number Diff line number Diff line change 8
8
runs-on : ubuntu-latest
9
9
strategy :
10
10
matrix :
11
- python-version : [3.8 ] # build only for 3.8 for now
11
+ python-version : [3.9 ] # build only for 3.9 for now
12
12
13
13
steps :
14
14
- uses : actions/checkout@v2
@@ -574,10 +574,10 @@ jobs:
574
574
runs-on : ubuntu-latest
575
575
steps :
576
576
- uses : actions/checkout@v2
577
- - name : Set up Python 3.8
577
+ - name : Set up Python 3.9
578
578
uses : actions/setup-python@v2
579
579
with :
580
- python-version : 3.8
580
+ python-version : 3.9
581
581
- name : Install dependencies
582
582
run : |
583
583
python -m pip install --upgrade pip
Original file line number Diff line number Diff line change 3
3
4
4
## [ Unreleased]
5
5
6
+ ## [ 3.5.1] ( https://github.com/OpenNMT/OpenNMT-py/tree/3.5.1 ) (2024-03-13)
7
+
8
+ * Further fixes
9
+ * added wikitext runs
10
+
6
11
## [ 3.5.0] ( https://github.com/OpenNMT/OpenNMT-py/tree/3.5.0 ) (2024-02-22)
7
12
8
13
* Further improvements and fixes
Original file line number Diff line number Diff line change 21
21
onmt .modules ,
22
22
]
23
23
24
- __version__ = "3.5.0 "
24
+ __version__ = "3.5.1 "
Original file line number Diff line number Diff line change 11
11
description = "A python implementation of OpenNMT" ,
12
12
long_description = long_description ,
13
13
long_description_content_type = "text/markdown" ,
14
- version = "3.5.0 " ,
14
+ version = "3.5.1 " ,
15
15
packages = find_packages (),
16
16
project_urls = {
17
17
"Documentation" : "http://opennmt.net/OpenNMT-py/" ,
18
18
"Forum" : "http://forum.opennmt.net/" ,
19
19
"Gitter" : "https://gitter.im/OpenNMT/OpenNMT-py" ,
20
20
"Source" : "https://github.com/OpenNMT/OpenNMT-py/" ,
21
21
},
22
- python_requires = ">=3.8 " ,
22
+ python_requires = ">=3.9 " ,
23
23
install_requires = [
24
- "torch>=2.0. 1,<2.3" ,
24
+ "torch>=2.1,<2.3" ,
25
25
"configargparse" ,
26
- "ctranslate2>=3.24 ,<5" ,
26
+ "ctranslate2>=4 ,<5" ,
27
27
"tensorboard>=2.3" ,
28
28
"flask" ,
29
29
"waitress" ,
30
- "pyonmttok>=1.35 ,<2" ,
30
+ "pyonmttok>=1.37 ,<2" ,
31
31
"pyyaml" ,
32
32
"sacrebleu" ,
33
33
"rapidfuzz" ,
You can’t perform that action at this time.
0 commit comments