Skip to content

Commit

Permalink
bump 3.5.1 (#2570)
Browse files Browse the repository at this point in the history
* bump 3.5.1
  • Loading branch information
vince62s authored Mar 13, 2024
1 parent 8479526 commit 39c984f
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8] # build only for 3.8 for now
python-version: [3.9] # build only for 3.9 for now

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -574,10 +574,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@

## [Unreleased]

## [3.5.1](https://github.com/OpenNMT/OpenNMT-py/tree/3.5.1) (2024-03-13)

* Further fixes
* added wikitext runs

## [3.5.0](https://github.com/OpenNMT/OpenNMT-py/tree/3.5.0) (2024-02-22)

* Further improvements and fixes
Expand Down
2 changes: 1 addition & 1 deletion onmt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
onmt.modules,
]

__version__ = "3.5.0"
__version__ = "3.5.1"
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,23 @@
description="A python implementation of OpenNMT",
long_description=long_description,
long_description_content_type="text/markdown",
version="3.5.0",
version="3.5.1",
packages=find_packages(),
project_urls={
"Documentation": "http://opennmt.net/OpenNMT-py/",
"Forum": "http://forum.opennmt.net/",
"Gitter": "https://gitter.im/OpenNMT/OpenNMT-py",
"Source": "https://github.com/OpenNMT/OpenNMT-py/",
},
python_requires=">=3.8",
python_requires=">=3.9",
install_requires=[
"torch>=2.0.1,<2.3",
"torch>=2.1,<2.3",
"configargparse",
"ctranslate2>=3.24,<5",
"ctranslate2>=4,<5",
"tensorboard>=2.3",
"flask",
"waitress",
"pyonmttok>=1.35,<2",
"pyonmttok>=1.37,<2",
"pyyaml",
"sacrebleu",
"rapidfuzz",
Expand Down

0 comments on commit 39c984f

Please sign in to comment.