Skip to content

Commit

Permalink
Merge pull request #465 from dtrodrigues/python3.10
Browse files Browse the repository at this point in the history
Support Python 3.10 in CI/local testing
  • Loading branch information
woile committed Dec 22, 2021
2 parents b009142 + 1f37002 commit 095f02e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
python-check:
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ typing-extensions = "^4.0.1"
[tool.poetry.dev-dependencies]
ipython = "^7.2"
# test
pytest = "^5.0"
pytest = "^6.2.5"
pytest-cov = "^2.6"
pytest-mock = "^2.0"
codecov = "^2.0"
Expand Down
4 changes: 2 additions & 2 deletions tests/commands/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ def config():
return _config


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


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

0 comments on commit 095f02e

Please sign in to comment.