Skip to content

Commit

Permalink
Enable support for Python 3.5 (#1954)
Browse files Browse the repository at this point in the history
* Switch from Python 3.7 to 3.5 in CI

* fixes
  • Loading branch information
oskooi authored Feb 21, 2022
1 parent 077f1a9 commit 35b10e5
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions python/simulation.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# -*- coding: utf-8 -*-
from __future__ import annotations

from typing import Callable, List, Tuple, Union, Optional

import functools
Expand Down Expand Up @@ -968,7 +966,7 @@ def __init__(self,
geometry_center: Vector3Type = Vector3(),
force_all_components: bool = False,
split_chunks_evenly: bool = True,
chunk_layout: Optional[str, Simulation, BinaryPartition] = None,
chunk_layout: Optional[str] = None,
collect_stats: bool = False):
"""
All `Simulation` attributes are described in further detail below. In brackets
Expand Down

0 comments on commit 35b10e5

Please sign in to comment.