Skip to content

Commit e1f750e

Browse files
committed
fixes
1 parent 6291b9b commit e1f750e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/actions/build_pandas/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ runs:
1313
- name: Build Pandas
1414
if : ${{ runner.os != 'Windows' }}
1515
run: |
16-
pip install . --no-build-isolation -v
16+
pip install -e . --no-build-isolation -v
1717
shell: bash -el {0}
1818

1919
- name: Build Pandas (Windows)

.github/workflows/32-bit-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
pip install "git+https://github.com/mesonbuild/meson-python.git@main" && \
4444
python -m pip install versioneer[toml] && \
4545
export PANDAS_CI=1 && \
46-
python -m pip install --no-build-isolation -ev . && \
46+
python -m pip install --no-build-isolation -ve . && \
4747
python -m pip list && \
4848
pytest -m 'not slow and not network and not clipboard and not single_cpu' pandas --junitxml=test-data.xml
4949

.github/workflows/python-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
python -m pip install python-dateutil pytz cython
7979
# TODO: update when upstream releases fixes
8080
python -m pip install "meson[ninja] @ git+https://github.com/mesonbuild/meson.git@master"
81-
python -m pip install "git+https://github.com/FFY00/meson-python.git@main"
81+
python -m pip install "git+https://github.com/mesonbuild/meson-python.git@main"
8282
python -m pip install hypothesis==6.52.1 pytest>=6.2.5 pytest-xdist pytest-cov pytest-asyncio>=0.17
8383
python -m pip install versioneer[toml]
8484
python -m pip list

0 commit comments

Comments
 (0)