Skip to content

Commit 39c984f

Browse files
authored
bump 3.5.1 (#2570)
* bump 3.5.1
1 parent 8479526 commit 39c984f

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

.github/workflows/push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
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
1212

1313
steps:
1414
- uses: actions/checkout@v2
@@ -574,10 +574,10 @@ jobs:
574574
runs-on: ubuntu-latest
575575
steps:
576576
- uses: actions/checkout@v2
577-
- name: Set up Python 3.8
577+
- name: Set up Python 3.9
578578
uses: actions/setup-python@v2
579579
with:
580-
python-version: 3.8
580+
python-version: 3.9
581581
- name: Install dependencies
582582
run: |
583583
python -m pip install --upgrade pip

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33

44
## [Unreleased]
55

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+
611
## [3.5.0](https://github.com/OpenNMT/OpenNMT-py/tree/3.5.0) (2024-02-22)
712

813
* Further improvements and fixes

onmt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
onmt.modules,
2222
]
2323

24-
__version__ = "3.5.0"
24+
__version__ = "3.5.1"

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,23 @@
1111
description="A python implementation of OpenNMT",
1212
long_description=long_description,
1313
long_description_content_type="text/markdown",
14-
version="3.5.0",
14+
version="3.5.1",
1515
packages=find_packages(),
1616
project_urls={
1717
"Documentation": "http://opennmt.net/OpenNMT-py/",
1818
"Forum": "http://forum.opennmt.net/",
1919
"Gitter": "https://gitter.im/OpenNMT/OpenNMT-py",
2020
"Source": "https://github.com/OpenNMT/OpenNMT-py/",
2121
},
22-
python_requires=">=3.8",
22+
python_requires=">=3.9",
2323
install_requires=[
24-
"torch>=2.0.1,<2.3",
24+
"torch>=2.1,<2.3",
2525
"configargparse",
26-
"ctranslate2>=3.24,<5",
26+
"ctranslate2>=4,<5",
2727
"tensorboard>=2.3",
2828
"flask",
2929
"waitress",
30-
"pyonmttok>=1.35,<2",
30+
"pyonmttok>=1.37,<2",
3131
"pyyaml",
3232
"sacrebleu",
3333
"rapidfuzz",

0 commit comments

Comments
 (0)