-
Notifications
You must be signed in to change notification settings - Fork 42
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
test pandas pre #237
test pandas pre #237
Conversation
pip install .[test] | ||
|
||
- name: Install pandas | ||
if: ${{ matrix.pandas != null }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if: ${{ matrix.pandas != null }} | |
if: ${{ matrix.pandas != null }} | |
pip uninstall pandas -y |
@andrewgsavage it look like this new CI job does not really install pandas nightly build: https://github.com/hgrecco/pint-pandas/pull/237/checks#step:10:9 you need to uninstalled previously installed version first as stated in pandas documentation |
- Support for NumPy verson 2 | ||
- Minimum Pint version is 0.24 | ||
- Minimum Pandas version is 2.2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These are not the versions currently specified in pyproject.toml
:
Lines 25 to 30 in 0e6a5ac
requires-python = ">=3.9" | |
dynamic = ["version"] # Version is taken from git tags using setuptools_scm | |
dependencies = [ | |
"pint>=0.21", | |
"pandas>=1.5" | |
] |
pre-commit run --all-files
with no errors