Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix version requirement for eventio, fixes #2185 #2187

Merged
merged 1 commit into from
Jan 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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