Skip to content

Commit

Permalink
add packaging to pandera dependencies
Browse files Browse the repository at this point in the history
the `packaging` package was a sub-dependency of one of pandera's
dependencies, but now it isn't being installed as part of the
`setup.py` dependency-resolution logic. This diff adds `packaging`
to pandera's dependencies
  • Loading branch information
cosmicBboy committed Nov 28, 2020
1 parent db31b10 commit 2d8b0cb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ dependencies:
- pre_commit

# pandera dependencies
- packaging >= 20.0
- numpy
- pandas
- scipy
Expand Down
2 changes: 1 addition & 1 deletion pandera/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Version file"""

__version__ = "0.5.0"
__version__ = "0.5.1"
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ pytest-cov
twine
asv
pre_commit
packaging >= 20.0
numpy
pandas
scipy
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"pandera",
],
install_requires=[
"packaging >= 20.0",
"numpy >= 1.9.0",
"pandas >= 0.23.0",
"typing_extensions ; python_version<'3.8'",
Expand Down

0 comments on commit 2d8b0cb

Please sign in to comment.