-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(deps): updated dependencies, bumped minimum Python version to 3…
….7 (#242) * build(deps): updated dependencies, bumped minimum Python version to 3.7 * ci: moved linting to seperate job * build(deps): moved coverage back as a non-dev dep * ci: fixed lint job (by setting up Python properly) * ci: bumped Python version used to build docs to Python 3.9 * docs: finished goal of dropping Python 3.6 and supporting 3.7 to 3.9 * fix: fixed lint issues where exception chaining wasn't explicit * fix: fixed failing test (due to update to sklearn 1.0) * docs: note about dropping Python 3.6 support in whats_new
- Loading branch information
Showing
10 changed files
with
319 additions
and
321 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
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 |
---|---|---|
|
@@ -14,7 +14,7 @@ jobs: | |
fail-fast: true | ||
matrix: | ||
os: [ubuntu-18.04, windows-latest, macOS-latest] | ||
python-version: ["3.6"] | ||
python-version: ["3.7"] | ||
defaults: | ||
run: | ||
shell: bash | ||
|
@@ -26,8 +26,6 @@ jobs: | |
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- uses: pre-commit/[email protected] | ||
|
||
- name: Install Poetry | ||
uses: snok/[email protected] | ||
with: | ||
|
@@ -70,3 +68,21 @@ jobs: | |
verbose: true | ||
directory: /home/runner/work/moabb/moabb | ||
files: ./.coverage | ||
|
||
lint: | ||
name: lint ${{ matrix.os }}, py-${{ matrix.python-version }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: true | ||
matrix: | ||
os: [ubuntu-18.04] | ||
python-version: ["3.7"] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Setup Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- uses: pre-commit/[email protected] |
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
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.