Skip to content

Commit

Permalink
Fix version requirement for eventio, fixes #2185
Browse files Browse the repository at this point in the history
  • Loading branch information
maxnoe committed Jan 6, 2023
1 parent a2f4367 commit b5d6158
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 15 deletions.
1 change: 1 addition & 0 deletions docs/changes/2187.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix missing comma in eventio version requirement in setup.cfg (#2185).
30 changes: 15 additions & 15 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -24,39 +24,39 @@ packages = find:
python_requires = >=3.8
zip_safe = False
install_requires=
astropy~=5.0
bokeh~=2.0
astropy ~=5.0
bokeh ~=2.0
docutils
eventio>=1.9.1<2.0.0a0
iminuit>=2
eventio >=1.9.1, <2.0.0a0
iminuit >=2
importlib_resources ; python_version < "3.9"
joblib
matplotlib~=3.0
numba>=0.43
numpy~=1.16
matplotlib ~=3.0
numba >=0.43
numpy ~=1.16
psutil
pyyaml>=5.1
pyyaml >=5.1
requests
scikit-learn
scipy~=1.2
tables~=3.4
tqdm>=4.32
traitlets~=5.0,>=5.0.5
scipy ~=1.2
tables ~=3.4
tqdm >=4.32
traitlets ~=5.6
zstandard


[options.extras_require]
tests =
pytest
pandas>=0.24.0
pandas ~=1.0
tomli
pytest_astropy_header
h5py


docs =
sphinx~=3.5
jinja2~=3.0.2 # for sphinx 3.5, remove when upgrading sphinx
sphinx ~=3.5
jinja2 ~=3.0.2 # for sphinx 3.5, remove when upgrading sphinx
sphinx_rtd_theme
sphinx_automodapi
nbsphinx
Expand Down

0 comments on commit b5d6158

Please sign in to comment.