Skip to content

Commit

Permalink
Fixed compatibility issue in clicker (#19)
Browse files Browse the repository at this point in the history
* Fixed compatibility issue in clicker

_clicker used python syntax that is only compatible with python 3.10+.
I changed the syntax to be compatible with earlier versions.
My research group uses this epon source library with python 3.9.6 and
are glad to contribute.
Package now requires the typing module as a dependency.

Committer Contact info:

H. Ryott Glayzer
email: [email protected]

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* replaced old syntax with __future__

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Update setup.cfg

---------

Co-authored-by: H. Ryott Glayzer <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Ian Hunt-Isaak <[email protected]>
  • Loading branch information
4 people authored Jan 31, 2024
1 parent 8891b72 commit d7f1a3d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions mpl_point_clicker/_clicker.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

# Copyright (c) Ian Hunt-Isaak.
# Distributed under the terms of the Modified BSD License.
from __future__ import annotations

__all__ = [
"clicker",
Expand Down

0 comments on commit d7f1a3d

Please sign in to comment.