Skip to content

Commit

Permalink
remove outdated install_requires
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfikl authored and inducer committed Nov 6, 2022
1 parent c96a4f6 commit 49f3d33
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
8 changes: 1 addition & 7 deletions meshmode/discretization/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,7 @@

from abc import ABC, abstractmethod
from warnings import warn
from typing import Hashable, Iterable, Optional

try:
# NOTE: only available in >=3.8
from typing import Protocol, runtime_checkable
except ImportError:
from typing_extensions import Protocol, runtime_checkable # type: ignore[misc]
from typing import Hashable, Iterable, Protocol, Optional, runtime_checkable

import numpy as np

Expand Down
3 changes: 0 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,7 @@ def main():
"loopy>=2019.1",

"arraycontext",

"recursivenodes",
"dataclasses; python_version<'3.7'",
"typing_extensions; python_version<'3.8'",
],
extras_require={
"visualization": ["h5py"],
Expand Down

0 comments on commit 49f3d33

Please sign in to comment.