Skip to content

Commit

Permalink
Merge pull request #773 from CoffeaTeam/awkward-numpy-repin
Browse files Browse the repository at this point in the history
repin awkward and numpy
  • Loading branch information
lgray authored Mar 14, 2023
2 parents 6d4dce9 + a40ba2b commit a7b557c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion coffea/hist/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

from coffea.util import deprecate

deprecate(ImportError("coffea.hist is deprecated"), "v0.8.0", "31 Dec 2022")
deprecate(ImportError("coffea.hist is deprecated"), "v2023.3.0", "31 Mar 2023")

__all__ = [
"Hist",
Expand Down
4 changes: 2 additions & 2 deletions coffea/lookup_tools/csv_converters.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ def convert_btag_csv_file(csvFilePath):
RuntimeError(
"Auto-conversion of btag CSV files is deprecated and will be removed. Try coffea.btag_tools.BTagScaleFactor or correctionlib!"
),
"v0.8.0",
"31 Dec 2022",
"v2023.3.0",
"31 Mar 2023",
)

fopen = open
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def get_description():


INSTALL_REQUIRES = [
"awkward>=1.5.1,<2",
"awkward>=1.10.3,<2",
"uproot>=4.1.6,==4.*,!=4.2.4,!=4.3.0,!=4.3.1",
"uproot3-methods>=0.10.0",
"uproot3>=3.14.1",
Expand All @@ -67,7 +67,7 @@ def get_description():
'numba>=0.50.0;python_version<"3.7"',
'numba>=0.56.0;python_version>"3.6"',
'numpy>=1.16.0,<1.22;python_version<"3.7"', # <1.22 for numba version restrictions with 1.55 series
'numpy>=1.18.0;python_version>"3.6"', # numba 1.56 available for python > 3.6, no upper numpy requirement
'numpy>=1.18.0,<1.24;python_version>"3.6"', # numba 1.56 available for python > 3.6, upper requirement for higher python versions
"scipy>=1.1.0",
"tqdm>=4.27.0",
"lz4",
Expand Down

0 comments on commit a7b557c

Please sign in to comment.