Skip to content
This repository has been archived by the owner on Nov 22, 2022. It is now read-only.

Commit

Permalink
EASY [PyText] fix OSS release (#909)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #909

this is a reconciliation diff to match what was just released to
as v0.2.2. There was several issues during this release, and I uploaded to
pypi a package that was broken. Pypi does not allow overwriting, so I had to
increase the version number.

I manually fixed the source (because it was minor packaging and dependency
problems) and pushed package 0.2.2.  This diff includes those fixes after
the fact to make the sources consistent with the release.

Changes are:
- fix fairseq requirement (separate diff, landing now)
- add __init__.py to make qna a module included in the release
- amend CHANGELOG to match version numbers

Reviewed By: neo315

Differential Revision: D16809591

fbshipit-source-id: 89a8c9804617e73ecbff484e893ce79ad0049094
  • Loading branch information
Titousensei authored and facebook-github-bot committed Aug 15, 2019
1 parent 0217d4f commit be736e8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## v0.2.1
## v0.2.2

*Note:* this is the last release with _Deprecated classes. Those classes will be removed in the next release.

Expand Down Expand Up @@ -76,6 +76,11 @@
- fix BlockShardedTSVDataSource (#832)


## v0.2.1

(skipped because of packaging issues)


## v0.2.0

*Note:* This release makes the new data handler API the default and deprecates Task and Model classes using the old data handler API. We recommend that you migrate your models to the new API as soon as possible. More details here: http://...
Expand Down
Empty file added pytext/models/qna/__init__.py
Empty file.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

setuptools.setup(
name="pytext-nlp",
version="0.2.1",
version="0.2.2",
description="pytorch modeling framework and model zoo for text models",
url="https://github.com/facebookresearch/PyText",
author="Facebook",
Expand Down

0 comments on commit be736e8

Please sign in to comment.