Skip to content

Commit 39e8bdf

Browse files
committed
core: rename deep-forest into deep-forest-py310
1 parent a8b47c6 commit 39e8bdf

2 files changed

Lines changed: 12 additions & 3 deletions

File tree

README.rst

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ for a long time (with one recent try to move to py310+ but with CI/CD failing).
3333
If the upstream maintainers prioritise these updates, we are happy to
3434
contribute everything back via pull request.
3535

36+
See more in https://github.com/simonprovost/deep_forest_py310/pull/1
37+
3638
**DF21** is an implementation of `Deep Forest <https://arxiv.org/pdf/1702.08835.pdf>`__ 2021.2.1. It is designed to have the following advantages:
3739

3840
- **Powerful**: Better accuracy than existing tree-based ensemble methods.
@@ -49,7 +51,14 @@ DF21 is optimized for what a tree-based ensemble excels at (i.e., tabular data),
4951
Installation
5052
------------
5153

52-
DF21 can be installed using pip via `PyPI <https://pypi.org/project/deep-forest/>`__ which is the package installer for Python. You can use pip to install packages from the Python Package Index and other indexes. Refer `this <https://pypi.org/project/pip/>`__ for the documentation of pip. Use this command to download DF21 :
54+
This fork is published on PyPI as ``deep-forest-py310``. You can install it with:
55+
56+
.. code-block:: bash
57+
58+
pip install deep-forest-py310
59+
60+
If you specifically want to use the original upstream project (which may not support
61+
modern Python versions), you can instead install:
5362

5463
.. code-block:: bash
5564

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55

66
# Project Information
7-
DISTNAME = "deep-forest"
8-
DESCRIPTION = "Deep Forest"
7+
DISTNAME = "deep-forest-py310"
8+
DESCRIPTION = "Deep Forest (community-maintained fork with Python 3.10+ support)"
99
with open("README.rst", encoding="utf-8") as f:
1010
LONG_DESCRIPTION = f.read()
1111
MAINTAINER = "Simon Provost"

0 commit comments

Comments
 (0)