Changes between Version 8 and Version 9 of Python3
- Timestamp:
- 2020-07-21T10:42:48Z (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Python3
v8 v9 6 6 * Reduce errors by relying on Python 2 behavior and tests as well as manual review. 7 7 * Try to reduce grunt work. 8 9 == How to set up your development environment == 10 11 We use [https://tox.readthedocs.io/en/latest/ tox] to standardize environments across developers and CI. So first install tox (globally, probably) and then in your Tahoe-LAFS working copy run `tox -e py36 --notest` to bootstrap the `py36` virtualenv. Then activate the environment with `source .tox/py36/bin/activate` or equivalent and run `trial allmydata.test.test_python3` as a smoke test. 8 12 9 13 == How to choose a module to port ==