@@ -297,20 +297,20 @@ You can install these optional dependencies, for example with:
297297 .. code-block :: console
298298
299299 $ cd /PATH/TO/YOUR/DISTRIBUTION_PACKAGE
300- $ python3 -m venv .
301- $ . bin/activate
300+ $ python3 -m venv .venv
301+ $ . .venv/ bin/activate
302302 $ python -m pip install --upgrade pip
303- $ python -m pip install -e ' .[dev]'
303+ $ python -m pip install -e " .[dev]"
304304
305305 .. tab :: Windows
306306
307307 .. code-block :: ps1
308308
309309 > cd C:\PATH\TO\YOUR\DISTRIBUTION_PACKAGE
310- > python3 - m venv .
311- > Scripts\activate.bat
310+ > python3 - m venv .venv
311+ > .venv\ Scripts\activate.bat
312312 > python - m pip install -- upgrade pip
313- > python - m pip install - e ' .[dev]'
313+ > python - m pip install - e " .[dev]"
314314
315315:file: `src ` package
316316-------------------
@@ -534,29 +534,29 @@ Testing
534534
535535 $ mkdir test_env
536536 $ cd test_env
537- $ python3 -m venv .
538- $ source bin/activate
539- $ python -m pip install dist/dataprep-0.1.0-py3-none-any .whl
540- Processing ./dist/dataprep-0.1.0-py3-none-any .whl
541- Collecting pandas
542- Using cached pandas-1.3.4-cp39-cp39-macosx_10_9_x86_64 .whl (11.6 MB )
537+ $ python3 -m venv .venv
538+ $ . .venv/ bin/activate
539+ $ python -m pip install dist/dataprep-0.1.0-cp313-cp313-macosx_13_0_arm64 .whl
540+ Processing ./dist/dataprep-0.1.0-cp313-cp313-macosx_13_0_arm64 .whl
541+ Collecting Cython (from dataprep==0.1.0)
542+ Using cached Cython-3.0.11-py2.py3-none-any .whl.metadata (3.2 kB )
543543 …
544- Successfully installed dataprep-0.1.0 numpy-1.21.4 pandas-1.3.4 python-dateutil-2.8.2 pytz-2021.3 six-1.16.0
544+ Successfully installed Cython-3.0.11 dataprep-0.1.0 numpy-2.1.2 pandas-2.2.3 python-dateutil-2.9.0.post0 pytz-2024.2 six-1.16.0 tzdata-2024.2
545545
546546 .. tab :: Windows
547547
548548 .. code-block :: console
549549
550550 > mkdir test_env
551551 > cd test_env
552- > python -m venv .
553- > Scripts\activate.bat
554- > python -m pip install dist/dataprep-0.1.0-py3-none-any .whl
555- Processing ./dist/dataprep-0.1.0-py3-none-any .whl
556- Collecting pandas
557- Using cached pandas-1.3.4-cp39-cp39-macosx_10_9_x86_64 .whl (11.6 MB )
552+ > python -m venv .venv
553+ > .venv\ Scripts\activate.bat
554+ > python -m pip install dist/dataprep-0.1.0-cp313-cp313-win_amd64 .whl
555+ Processing ./dist/dataprep-0.1.0-cp313-cp313-win_amd64 .whl
556+ Collecting Cython (from dataprep==0.1.0)
557+ Using cached Cython-3.0.11-cp313-cp313-win_amd64 .whl.metadata (3.2 kB )
558558 …
559- Successfully installed dataprep-0.1.0 numpy-1.21.4 pandas-1.3.4 python-dateutil-2.8.2 pytz-2021.3 six-1.16.0
559+ Successfully installed Cython-3.0.11 dataprep-0.1.0 numpy-2.1.2 pandas-2.2.3 python-dateutil-2.9.0.post0 pytz-2024.2 six-1.16.0 tzdata-2024.2
560560
561561 You can then check the :term: `Wheel ` file with:
562562
@@ -565,8 +565,8 @@ You can then check the :term:`Wheel` file with:
565565 $ mkdir test_env
566566 $ cd !$
567567 cd test_env
568- $ python3 -m venv .
569- $ source bin/activate
568+ $ python3 -m venv .venv
569+ $ . .venv/ bin/activate
570570 $ python -m pip install dist/dataprep-0.1.0-py3-none-any.whl
571571 Processing ./dist/dataprep-0.1.0-py3-none-any.whl
572572 Collecting pandas
0 commit comments