Skip to content

Commit

Permalink
Add Python 3.9 support
Browse files Browse the repository at this point in the history
  • Loading branch information
messense committed Oct 10, 2020
1 parent 92b8359 commit eef72dd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Linux.yml
Expand Up @@ -18,7 +18,7 @@ jobs:
ref: v0.9.2
path: fastText
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/Windows.yml
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python-version: [3.5, 3.6, 3.7, 3.8]
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
arch: [x64, x86]
steps:
- uses: actions/checkout@v2
Expand All @@ -18,7 +18,7 @@ jobs:
ref: v0.9.2
path: fastText
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
architecture: ${{ matrix.arch }}
python-version: ${{ matrix.python-version }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macOS.yml
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v2
Expand All @@ -17,7 +17,7 @@ jobs:
ref: v0.9.2
path: fastText
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
Expand Down
2 changes: 1 addition & 1 deletion manylinux.sh
Expand Up @@ -9,7 +9,7 @@ for PYBIN in /opt/python/cp27*/bin; do
"${PYBIN}/python" setup.py bdist_wheel
done

for PYBIN in /opt/python/cp3[5678]*/bin; do
for PYBIN in /opt/python/cp3[56789]*/bin; do
"${PYBIN}/python" setup.py bdist_wheel
done

Expand Down

0 comments on commit eef72dd

Please sign in to comment.