-
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
Merged
Merged
test pandas pre #237
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
7fe550f
test min verions
andrewgsavage f056f3a
test versions
andrewgsavage c9c3631
test versions
andrewgsavage 438e628
pandas pre
andrewgsavage c4683d7
pandas pre
andrewgsavage 0be817f
changelog
andrewgsavage cb32955
changelog
andrewgsavage File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
name: CI-pandas-pre | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
test: | ||
strategy: | ||
matrix: | ||
python-version: ["3.10", "3.11", "3.12"] | ||
numpy: ["numpy>=1.20.3,<2.0.0", "numpy==2.0.0.rc2"] | ||
pandas: ["pandas==2.2.2"] | ||
pint: ["pint==0.24"] | ||
|
||
runs-on: ubuntu-latest | ||
|
||
env: | ||
TEST_OPTS: "-rfsxEX -s --cov=pint_pandas --cov-config=.coveragerc" | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 100 | ||
|
||
- name: Get tags | ||
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Get pip cache dir | ||
id: pip-cache | ||
run: echo "::set-output name=dir::$(pip cache dir)" | ||
|
||
- name: Setup caching | ||
uses: actions/cache@v2 | ||
with: | ||
path: ${{ steps.pip-cache.outputs.dir }} | ||
key: pip-${{ matrix.python-version }} | ||
restore-keys: | | ||
pip-${{ matrix.python-version }} | ||
|
||
# - name: Install numpy | ||
# if: ${{ matrix.numpy != null }} | ||
# run: pip install "${{matrix.numpy}}" | ||
|
||
- name: Install pint | ||
if: ${{ matrix.pint != null }} | ||
run: pip install "${{matrix.pint}}" | ||
|
||
- name: Install dependencies | ||
run: | | ||
pip install .[test] | ||
|
||
- name: Install pandas | ||
if: ${{ matrix.pandas != null }} | ||
run: pip install --pre --extra-index https://pypi.anaconda.org/scipy-wheels-nightly/simple pandas | ||
|
||
- name: Run Tests | ||
run: | | ||
pytest $TEST_OPTS | ||
|
||
- name: Coverage report | ||
run: coverage report -m | ||
|
||
- name: Coveralls Parallel | ||
env: | ||
COVERALLS_FLAG_NAME: ${{ matrix.test-number }} | ||
COVERALLS_PARALLEL: true | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
COVERALLS_SERVICE_NAME: github | ||
run: | | ||
pip install coveralls | ||
coveralls | ||
|
||
coveralls: | ||
needs: test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.x | ||
- name: Coveralls Finished | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
COVERALLS_SERVICE_NAME: github | ||
run: | | ||
pip install coveralls | ||
coveralls --finish | ||
|
||
# Dummy task to summarize all. See https://github.com/bors-ng/bors-ng/issues/1300 | ||
ci-success: | ||
name: ci | ||
if: ${{ success() }} | ||
needs: test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: CI succeeded | ||
run: exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,12 +1,16 @@ | ||||||||||||||
pint-pandas Changelog | ||||||||||||||
===================== | ||||||||||||||
|
||||||||||||||
0.6 (unreleased) | ||||||||||||||
0.6 (2024-06-16) | ||||||||||||||
---------------- | ||||||||||||||
|
||||||||||||||
- Fix dequantify duplicate column failure #202 | ||||||||||||||
- Fix astype issue #196 | ||||||||||||||
- Support for `__array_ufunc__` and unary ops. #160 | ||||||||||||||
- Support for NumPy verson 2 | ||||||||||||||
- Minimum Pint version is 0.24 | ||||||||||||||
- Minimum Pandas version is 2.2 | ||||||||||||||
Comment on lines
+10
to
+12
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These are not the versions currently specified in Lines 25 to 30 in 0e6a5ac
|
||||||||||||||
|
||||||||||||||
|
||||||||||||||
0.5 (2023-09-07) | ||||||||||||||
---------------- | ||||||||||||||
|
@@ -17,10 +21,10 @@ pint-pandas Changelog | |||||||||||||
- Support for <NA> values in columns with integer magnitudes | ||||||||||||||
- Support for magnitudes of any type, such as complex128 or tuples #146 | ||||||||||||||
- Support for pandas 2.0, allowing `.cumsum, .cummax, .cummin` methods for `Series` and `DataFrame`. #186 | ||||||||||||||
- Minimum Pint version is 0.21 | ||||||||||||||
- Minimum Pandas vesrion is 2.0 | ||||||||||||||
- Support for unit registries with `force_ndarray_like = True`. #165 | ||||||||||||||
- A DataFrame/Series.pint.convert_object_dtype() function has been added to create PintArrays from Series of quantities. | ||||||||||||||
- Minimum Pint version is 0.21 | ||||||||||||||
- Minimum Pandas version is 2.0 | ||||||||||||||
|
||||||||||||||
0.4 (2023-05-23) | ||||||||||||||
---------------- | ||||||||||||||
|
@@ -30,7 +34,7 @@ pint-pandas Changelog | |||||||||||||
- Support for Pint 0.21 #168, #179 | ||||||||||||||
- Cast to `numpy.ndarray` in `PintArray._reduce` if needed to use `nanops` functions | ||||||||||||||
- Minimum Pint version is 0.21 | ||||||||||||||
- Minimum Pandas vesrion is 1.6 | ||||||||||||||
- Minimum Pandas version is 1.6 | ||||||||||||||
|
||||||||||||||
0.3 (2022-11-14) | ||||||||||||||
---------------- | ||||||||||||||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.