Skip to content

Commit

Permalink
Merge branch 'main' into categorical-missing
Browse files Browse the repository at this point in the history
  • Loading branch information
stanmart authored Jul 21, 2023
2 parents 2235504 + 8c89462 commit 50431fd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
platforms: all
- name: Build wheels
uses: pypa/cibuildwheel@v2.13.1
uses: pypa/cibuildwheel@v2.14.1
env:
CIBW_ARCHS_LINUX: auto
CIBW_ARCHS_MACOS: x86_64 arm64
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build_wheels_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
with:
platforms: all
- name: Build wheels
uses: pypa/cibuildwheel@v2.13.1
uses: pypa/cibuildwheel@v2.14.1
env:
CIBW_ARCHS_LINUX: auto aarch64
CIBW_ARCHS_MACOS: x86_64 arm64
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
name: artifact
path: dist

- uses: pypa/gh-action-pypi-publish@v1.8.7
- uses: pypa/gh-action-pypi-publish@v1.8.8
with:
user: __token__
password: ${{ secrets.GH_TESTPYPI_UPLOAD }}
Expand All @@ -75,7 +75,7 @@ jobs:
name: artifact
path: dist

- uses: pypa/gh-action-pypi-publish@v1.8.7
- uses: pypa/gh-action-pypi-publish@v1.8.8
with:
user: __token__
password: ${{ secrets.GH_PYPI_UPLOAD }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Project-specific
benchmark/*.csv
benchmark/data/*.pkl

# Files created by templating
dense.cpp
Expand Down
8 changes: 6 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,17 @@
Changelog
=========

3.2.0 - 2023-XX-XX
------------------
Unreleased
----------

**New features:**

- Add support for missing values in ``CategoricalMatrix`` by either creating a separate category for them or treating them as all-zero rows.

**Other changes:**

- Improve the performance of ``from_pandas`` in the case of low-cardinality categorical variables.

3.1.10 - 2023-06-23
-------------------

Expand Down

0 comments on commit 50431fd

Please sign in to comment.