Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for python 3.10 #83

Merged
merged 3 commits into from
Oct 12, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: [3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9, "3.10"]
fail-fast: false

steps:
@@ -30,7 +30,7 @@ jobs:
- name: Install Poetry
uses: abatilo/actions-poetry@v2.1.3
with:
poetry-version: 1.1.5
poetry-version: 1.1.11

- name: Install dependencies
run: poetry install
4 changes: 2 additions & 2 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ jobs:
name: Pre-commit
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9, "3.10"]
runs-on: ubuntu-latest
steps:
- name: Check out the repository
@@ -25,7 +25,7 @@ jobs:
- name: Install Poetry
uses: abatilo/actions-poetry@v2.1.3
with:
poetry-version: 1.1.5
poetry-version: 1.1.11

- name: Install dependencies
run: poetry install
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -11,6 +11,7 @@ classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
keywords = [
"Toyota",
2 changes: 1 addition & 1 deletion tests/test_myt.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""pytest tests for mytoyota.client.MyT"""

import pytest
import pytest # pylint: disable=import-error

from mytoyota.client import MyT
from mytoyota.exceptions import (
2 changes: 1 addition & 1 deletion tests/test_parking_location.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""pytest tests for mytoyota.location.ParkingLocation"""

from mytoyota.location import ParkingLocation
from mytoyota.location import ParkingLocation # pylint: disable=import-error

# pylint: disable=no-self-use