Skip to content

Commit

Permalink
Merge branch 'master' into iter_all_events
Browse files Browse the repository at this point in the history
  • Loading branch information
maxnoe authored May 14, 2021
2 parents 1e44e43 + ef40039 commit b4b692f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions eventio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@
from .simtel import SimTelFile
from .histograms import Histograms


__version__ = '2.0.0'


__all__ = [
'EventIOFile',
'IACTFile',
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[build-system]
requires = ["setuptools >= 40.6.0", "wheel", "Cython", "numpy"]
requires = ["setuptools >= 40.6.0", "wheel", "Cython", "oldest-supported-numpy"]
build-backend = "setuptools.build_meta"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def finalize_options(self):


with open('eventio/__init__.py') as f:
m = re.search("__version__ = [\"']([0-9.]+)[\"']", f.read())
m = re.search("__version__ = [\"'](.*)[\"']", f.read())
version = m.groups()[0]

setup(
Expand Down

0 comments on commit b4b692f

Please sign in to comment.