@@ -11,9 +11,9 @@ Steps to release a new version:
1111 It is not necessary to test all combinations; just make sure that you test
1212 each Python version and each Pandas version at least once.
1313
14- To install the latest Pandas on the 1.0 .x branch, use the command:
14+ To install the latest Pandas on the 2.3 .x branch, use the command:
1515 ```
16- pip install --upgrade --force "pandas>=1.0,<1.1 "
16+ pip install --upgrade --force "pandas>=2.3,<2.4 "
1717 ```
1818
19191 . Ensure Watson NLU service API tests are enabled and passing by setting
@@ -23,15 +23,14 @@ Steps to release a new version:
2323 only the packages in ` requirements.txt ` by running the following commands
2424 from the root of your local copy of the repository:
2525 ```
26- conda create -y --prefix ./testenv python=3.8 pip
26+ conda create -y --prefix ./testenv python=3.12 pip
2727 conda activate ./testenv
28- pip install -r requirements.txt
2928 pip install --editable .
3029 python -c "import text_extensions_for_pandas as tp"
3130 ```
3231 The last command should succeed with no exceptions.
3332
34- You can safely deactivate and remove the Anaconda environment` ./testenv `
33+ You can safely deactivate and remove the Anaconda environment ` ./testenv `
3534 once this step is done.
3635
37361 . Activate your Text Extensions for Pandas build environment (usually called
@@ -46,7 +45,8 @@ Steps to release a new version:
4645 produce substantially the same output as before. Note that some of these
4746 notebooks need to run overnight.
4847
49- 1 . Ensure that the API docs generate without errors or warnings.
48+ 1 . Ensure that the API docs generate without errors or warnings. Use the script
49+ ` generate_docs.sh ` to generate them.
5050
51511 . Increment the version number in ` setup.py ` .
5252
0 commit comments