Skip to content

Commit

Permalink
SYS: Version bump 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
TEParsons committed May 1, 2024
1 parent 7342505 commit 8d8b3c9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
7 changes: 6 additions & 1 deletion psychopy_cedrus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
# Copyright (C) 2002-2018 Jonathan Peirce (C) 2019-2022 Open Science Tools Ltd.
# Distributed under the terms of the GNU General Public License (GPL).

__version__ = '0.0.2'
import importlib.metadata

try:
__version__ = importlib.metadata.version("psychopy-cedrus")
except importlib.metadata.PackageNotFoundError:
__version__ = "0.dev"

from .cedrus import RB730
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@ build-backend = "setuptools.build_meta"

[project]
name = "psychopy-cedrus"
version = "0.0.3"
version = "0.0.4"
description = "Extension package for PsychoPy which adds support for various hardware devices by the Cedrus Corporation."
readme = "README.md"
requires-python = ">= 3.7"
license = { text = "GNU General Public License v3 (GPLv3)" }
authors = [
{ name = "Jon Peirce", email = "[email protected]" },
{ name = "Matthew Cutone", email = "[email protected]" },
{ name = "Todd Parsons", email = "[email protected]" },
]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
Expand Down

0 comments on commit 8d8b3c9

Please sign in to comment.