Skip to content

Commit

Permalink
fixing CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mmmaat committed Nov 24, 2023
1 parent ff5157f commit 27793db
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/doc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [ 3.7 ]
python-version: [ 3.12 ]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -24,7 +24,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade pip setuptools
pip install .[doc]
- name: Build documentation
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

strategy:
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
python-version: ['3.7', '3.10', '3.12']

steps:
- name: Checkout phonemizer
Expand Down Expand Up @@ -38,7 +38,7 @@ jobs:
run: pytest -v --cov=phonemizer --cov-report=xml test/

- name: Upload coverage to Codecov
if: ${{ matrix.python-version == '3.9' }}
if: ${{ matrix.python-version == '3.10' }}
uses: codecov/codecov-action@v2
with:
files: coverage.xml
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
- name: Install phonemizer
run: |
pip install --upgrade pip pytest
pip install --upgrade pip pytest setuptools
python setup.py install
- name: Version phonemizer
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Install phonemizer
run: |
pip install --upgrade pip
pip install --upgrade pip setuptools
python setup.py install
pip install --upgrade pytest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Install phonemizer
run: |
pip install pytest
pip install pytest setuptools
python setup.py install
- name: Version phonemizer
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ htmlcov/*
test/htmlcov
paper/*
.idea
*.~undo-tree~

docs/build

0 comments on commit 27793db

Please sign in to comment.