Skip to content

Commit 095f02e

Browse files
authored
Merge pull request #465 from dtrodrigues/python3.10
Support Python 3.10 in CI/local testing
2 parents b009142 + 1f37002 commit 095f02e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/pythonpackage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
python-check:
77
strategy:
88
matrix:
9-
python-version: [3.6, 3.7, 3.8, 3.9]
9+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
1010
platform: [ubuntu-latest, macos-latest, windows-latest]
1111
runs-on: ${{ matrix.platform }}
1212
steps:

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ typing-extensions = "^4.0.1"
5959
[tool.poetry.dev-dependencies]
6060
ipython = "^7.2"
6161
# test
62-
pytest = "^5.0"
62+
pytest = "^6.2.5"
6363
pytest-cov = "^2.6"
6464
pytest-mock = "^2.0"
6565
codecov = "^2.0"

tests/commands/conftest.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ def config():
1313
return _config
1414

1515

16-
@pytest.fixture() # type: ignore
16+
@pytest.fixture()
1717
def changelog_path() -> str:
1818
return os.path.join(os.getcwd(), "CHANGELOG.md")
1919

2020

21-
@pytest.fixture() # type: ignore
21+
@pytest.fixture()
2222
def config_path() -> str:
2323
return os.path.join(os.getcwd(), "pyproject.toml")

0 commit comments

Comments
 (0)