@@ -11,9 +11,9 @@ Steps to release a new version:
11
11
It is not necessary to test all combinations; just make sure that you test
12
12
each Python version and each Pandas version at least once.
13
13
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:
15
15
```
16
- pip install --upgrade --force "pandas>=1.0,<1.1 "
16
+ pip install --upgrade --force "pandas>=2.3,<2.4 "
17
17
```
18
18
19
19
1 . Ensure Watson NLU service API tests are enabled and passing by setting
@@ -23,15 +23,14 @@ Steps to release a new version:
23
23
only the packages in ` requirements.txt ` by running the following commands
24
24
from the root of your local copy of the repository:
25
25
```
26
- conda create -y --prefix ./testenv python=3.8 pip
26
+ conda create -y --prefix ./testenv python=3.12 pip
27
27
conda activate ./testenv
28
- pip install -r requirements.txt
29
28
pip install --editable .
30
29
python -c "import text_extensions_for_pandas as tp"
31
30
```
32
31
The last command should succeed with no exceptions.
33
32
34
- You can safely deactivate and remove the Anaconda environment` ./testenv `
33
+ You can safely deactivate and remove the Anaconda environment ` ./testenv `
35
34
once this step is done.
36
35
37
36
1 . Activate your Text Extensions for Pandas build environment (usually called
@@ -46,7 +45,8 @@ Steps to release a new version:
46
45
produce substantially the same output as before. Note that some of these
47
46
notebooks need to run overnight.
48
47
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.
50
50
51
51
1 . Increment the version number in ` setup.py ` .
52
52
0 commit comments