Skip to content

Commit

Permalink
RLS: Prepare for 5.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bashtage committed Jan 4, 2024
1 parent 123893f commit 1040ede
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 deletions.
2 changes: 2 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ variables:
TEST_INSTALL: false
MPLBACKEND: agg
coverage: true
test.install: false
pip.pre: false

jobs:
- template: ci/azure_template_posix.yml
Expand Down
5 changes: 3 additions & 2 deletions ci/azure_template_posix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ jobs:
XARRAY: 22.0
python310_latest:
python.version: '3.10'
FORMULAIC: 1.0.1
XXHASH: true
python311_latest:
python.version: '3.11'
Expand Down Expand Up @@ -119,7 +120,7 @@ jobs:
python -c "import linearmodels; linearmodels.test(['-n', 'auto', '--junitxml=../junit/test-results.xml'])"
popd
displayName: 'Run tests (site-packages)'
condition: and(ne(variables['test.install'], 'true'), eq(variables['pip.pre'], 'false'))
condition: and(eq(variables['test.install'], 'true'), ne(variables['pip.pre'], 'true'))
- script: |
echo "Testing editable install"
Expand All @@ -129,7 +130,7 @@ jobs:
echo pytest -m "${PYTEST_PATTERN}" --junitxml=junit/test-results.xml -n auto --durations=25 ${COVERAGE_OPTS} linearmodels/tests
pytest -m "${PYTEST_PATTERN}" --junitxml=junit/test-results.xml -n auto --durations=25 ${COVERAGE_OPTS} linearmodels/tests
displayName: 'Run tests (editable)'
condition: and(ne(variables['test.install'], 'false'), eq(variables['pip.pre'], 'false'))
condition: and(ne(variables['test.install'], 'true'), ne(variables['pip.pre'], 'true'))
- script: |
echo "Testing pip-pre"
Expand Down
6 changes: 5 additions & 1 deletion doc/make.bat
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ set SOURCEDIR=source
set BUILDDIR=build
set SPHINXPROJ=linearmodels
set SPHINXOPTS=
set PYDEVD_DISABLE_FILE_VALIDATION=1

if "%1" == "" goto help

Expand All @@ -23,15 +24,18 @@ if errorlevel 9009 (
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
echo.https://sphinx-doc.org/
set PYDEVD_DISABLE_FILE_VALIDATION=
exit /b 1
)

%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
set PYDEVD_DISABLE_FILE_VALIDATION=
goto end

:help
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
set PYDEVD_DISABLE_FILE_VALIDATION=

:end
popd
2 changes: 1 addition & 1 deletion doc/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ nbformat
matplotlib
seaborn
mypy_extensions>=0.4
mistune<2
# mistune<2
5 changes: 5 additions & 0 deletions doc/source/changes/5.0.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Verion 5.4
----------
- Compatability with NumPy 2
- Compatability with recent pandas releases

Version 5.3
-----------
- Bumped the minimum formulaic to 0.6.5.
Expand Down

0 comments on commit 1040ede

Please sign in to comment.