forked from facebookresearch/fairseq
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into gcie/metrics
Conflicts: fairseq/data/handwriting/raw_handwriting_dataset.py fairseq/models/wav2vec/wav2vec2_scribblelens.py
- Loading branch information
Showing
185 changed files
with
8,552 additions
and
2,593 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Configuration for probot-stale - https://github.com/probot/stale | ||
# Mostly copied from github.com/facebook/react/blob/master/.github/stale.yml | ||
# Number of days of inactivity before an issue becomes stale | ||
daysUntilStale: 90 | ||
# Number of days of inactivity before a stale issue is closed | ||
daysUntilClose: 7 | ||
# Issues with these labels will never be considered stale | ||
exemptLabels: | ||
- bug | ||
# Label to use when marking an issue as stale | ||
staleLabel: stale | ||
issues: | ||
# Comment to post when marking an issue as stale. | ||
markComment: > | ||
This issue has been automatically marked as stale. | ||
**If this issue is still affecting you, please leave any comment** (for example, "bump"), and we'll keep it open. | ||
We are sorry that we haven't been able to prioritize it yet. If you have any new additional information, please include it with your comment! | ||
# Comment to post when closing a stale issue. | ||
closeComment: > | ||
Closing this issue after a prolonged period of inactivity. If this issue is still present in the latest release, please create a new issue with up-to-date information. Thank you! | ||
pulls: | ||
# Comment to post when marking a pull request as stale. | ||
markComment: > | ||
This pull request has been automatically marked as stale. | ||
**If this pull request is still relevant, please leave any comment** (for example, "bump"), and we'll keep it open. | ||
We are sorry that we haven't been able to prioritize reviewing it yet. Your contribution is very much appreciated. | ||
# Comment to post when closing a stale pull request. | ||
closeComment: > | ||
Closing this pull request after a prolonged period of inactivity. If this issue is still present in the latest release, please ask for this pull request to be reopened. Thank you! | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: build_wheels | ||
|
||
on: | ||
push: | ||
branches: | ||
- v[0-9]+.[0-9]+.[x0-9]+ | ||
tags: | ||
- v* | ||
|
||
jobs: | ||
build_wheels: | ||
name: Build wheels on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Install Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.7' | ||
|
||
- name: Install cibuildwheel | ||
run: | | ||
python -m pip install cibuildwheel | ||
- name: Build wheels for CPython | ||
run: | | ||
python -m cibuildwheel --output-dir dist | ||
env: | ||
CIBW_BUILD: "cp36-*64 cp37-*64 cp38-*64" | ||
CIBW_MANYLINUX_X86_64_IMAGE: manylinux1 | ||
CIBW_BEFORE_BUILD: git submodule update --init --recursive && pip install . | ||
|
||
- uses: actions/upload-artifact@v2 | ||
with: | ||
name: wheels | ||
path: ./dist/*.whl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.