Skip to content

Commit cd5f0de

Browse files
committed
fix(conda): pin python to 3.12
1 parent 34826ac commit cd5f0de

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

docs/Release-Checklist.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@ We aim to release a new version of OpenWPM with each new Firefox release (~1 rel
66
1. Go to: <https://hg.mozilla.org/releases/mozilla-release/tags>.
77
2. Find the commit hash for the Firefox release version you'd like to upgrade to.
88
3. Update the `TAG` variable in [`scripts/install-firefox.sh`](../scripts/install-firefox.sh#L12) to that hash and the comment to the new tag name.
9-
2. Run `./scripts/update.sh`
10-
3. Increment the version number in [VERSION](../VERSION)
11-
4. Add a summary of changes since the last version to [CHANGELOG](../CHANGELOG.md)
12-
5. Squash and merge the release PR to master.
13-
6. Publish a new release from <https://github.com/openwpm/OpenWPM/releases>:
9+
2. Check if we can unpin our python version (this requires Linux to test) See <https://github.com/openwpm/OpenWPM/issues/1111>
10+
3. Run `./scripts/update.sh`
11+
4. Increment the version number in [VERSION](../VERSION)
12+
5. Add a summary of changes since the last version to [CHANGELOG](../CHANGELOG.md)
13+
6. Squash and merge the release PR to master.
14+
7. Publish a new release from <https://github.com/openwpm/OpenWPM/releases>:
1415
1. Click "Draft a new release".
1516
2. Enter the "Tag version" and "Release title" as `vX.X.X`.
1617
3. In the description:

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/environment-unpinned.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ dependencies:
1818
- plyvel
1919
- psutil
2020
- pyarrow
21-
- python
21+
# See https://github.com/openwpm/OpenWPM/issues/1111
22+
- python=3.12
2223
- pyvirtualdisplay
2324
- redis-py
2425
- s3fs
@@ -28,7 +29,7 @@ dependencies:
2829
- tblib
2930
- wget
3031
- pip:
31-
- jsonschema
32-
- domain-utils
3332
- dataclasses-json
33+
- domain-utils
34+
- jsonschema
3435
- tranco

0 commit comments

Comments
 (0)