Skip to content

Commit

Permalink
Fixing the pyyaml version. (#458)
Browse files Browse the repository at this point in the history
The new pyyaml version is introducing some issues, which we should fix. For now let's depend on the old version to unblock Travis.
  • Loading branch information
tdomhan authored and mjpost committed Jun 27, 2018
1 parent c59361d commit 241a6c8
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ Note that Sockeye has checks in place to not translate with an old model that wa

Each version section may have have subsections for: _Added_, _Changed_, _Removed_, _Deprecated_, and _Fixed_.

## [1.18.28]
### Changed
- Temporarily fixing the pyyaml version to 3.12 as version 4.1 introduced some backwards incompatible changes.

## [1.18.27]
### Fixed
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements.docs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ sphinx>=1.7.4
sphinx_rtd_theme
sphinx-autodoc-typehints>=1.3.0
recommonmark
pyyaml
pyyaml==3.12
2 changes: 1 addition & 1 deletion requirements/requirements.gpu-cu75.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pyyaml
pyyaml==3.12
mxnet-cu75mkl==1.2.0
numpy>=1.12
typing
2 changes: 1 addition & 1 deletion requirements/requirements.gpu-cu80.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pyyaml
pyyaml==3.12
mxnet-cu80mkl==1.2.0
numpy>=1.12
typing
2 changes: 1 addition & 1 deletion requirements/requirements.gpu-cu90.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pyyaml
pyyaml==3.12
mxnet-cu90mkl==1.2.0
numpy>=1.12
typing
2 changes: 1 addition & 1 deletion requirements/requirements.gpu-cu91.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pyyaml
pyyaml==3.12
mxnet-cu91mkl==1.2.0
numpy>=1.12
typing
2 changes: 1 addition & 1 deletion requirements/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pyyaml
pyyaml==3.12
mxnet-mkl==1.2.0
numpy>=1.12
typing
2 changes: 1 addition & 1 deletion sockeye/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
# express or implied. See the License for the specific language governing
# permissions and limitations under the License.

__version__ = '1.18.27'
__version__ = '1.18.28'

0 comments on commit 241a6c8

Please sign in to comment.