Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wesselb committed Jun 4, 2022
1 parent dea39e4 commit 69d8f6a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Everybody likes multiple dispatch, just like everybody likes plums.

## Installation

Plum requires Python 3.6 or higher.
Plum requires Python 3.7 or higher.

```bash
pip install plum-dispatch
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
packages=find_packages(exclude=["docs"]),
python_requires=">=3.6",
python_requires=">=3.7",
install_requires=requirements,
ext_modules=[Extension("plum.function", ["plum/function.py"])],
include_package_data=True,
Expand Down
2 changes: 1 addition & 1 deletion tests/dispatcher/test_future_annotations.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def __init__(self, value):
self.value = value

@dispatch
def __add__(self, other: Union[Number, int]) -> "Number":
def __add__(self, other: Union[Number, int]) -> Number:
if isinstance(other, int):
other_value = other
else:
Expand Down

0 comments on commit 69d8f6a

Please sign in to comment.