You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Before doing the actual release, we need to test that the candidate works with SDV. To do this, we can create a branch on SDV that points to the release candidate we just created using the following steps:
108
+
109
+
1. Create a new branch on the SDV repository.
110
+
111
+
```bash
112
+
git checkout -b test-copulas-X.Y.Z
113
+
```
114
+
115
+
2. Update the pyproject.toml to set the minimum version of Copulas to be the same as the version of the release. For example,
116
+
117
+
```toml
118
+
'copulas>=X.Y.Z.dev0'
119
+
```
120
+
121
+
3. Push this branch. This should trigger all the tests to run.
122
+
123
+
```bash
124
+
git push --set-upstream origin test-copulas-X.Y.Z
125
+
```
126
+
127
+
4. Check the [Actions][sdv-actions] tab on SDV to make sure all the tests pass.
0 commit comments