-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #595 from bashtage/rls-6
DOC: Update for release 6.0
- Loading branch information
Showing
10 changed files
with
34 additions
and
15 deletions.
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
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,21 @@ | ||
Version 6.0 | ||
------------ | ||
|
||
* Increased minimums: | ||
|
||
- Python: 3.9 | ||
- formulaic: 1.0.0 | ||
- NumPy: 1.22.3 | ||
- SciPy: 1.8.0 | ||
- pandas: 1.4.0 | ||
- statsmodels: 0.13.0 | ||
|
||
* The key feature of this release is compatibility with NumPy 2. linearmodels | ||
wheels are built using NumPy 2.0.0rc1 (or later) and can run on any version | ||
of NumPy 1.22.3 or later, including NumPy 2.0.0. | ||
* Improved compatibility with fuure changes in pandas 3.0.0. | ||
|
||
.. note:: | ||
|
||
In order to use NumPy 2, the environment must consist of packages | ||
that have been built against NumPy 2.0.0rc1 or later. |
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
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
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
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
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
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
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
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,11 +1,10 @@ | ||
numpy>=1.22.3,<3 | ||
pandas>=1.4.0 | ||
scipy>=1.8.0 | ||
statsmodels>=0.12.0 | ||
statsmodels>=0.13.0 | ||
mypy_extensions>=0.4 | ||
Cython>=3.0.10 | ||
pyhdfe>=0.1 | ||
formulaic>=1.0.0 | ||
# versioning | ||
setuptools_scm[toml]>=8.0.0,<9.0.0 | ||
|