remove the version-checking code from __init__.py #2749

Closed
opened 2016-03-22 04:53:57 +00:00 by warner · 3 comments

I think it's time we removed the (large!) chunk of code in src/allmydata/*init*.py that measures and checks versions of our dependencies at startup.

I'd like to see a small subset of this code move into a utility function (maybe src/allmydata/version_checks.py): just enough to pull version strings for our known dependencies. This would support the extended form of tahoe --version. I think this code should not know what the setup.py install_requires= is, nor should it make any attempt to pass judgement upon whether the versions it finds are good enough.

Then I'd like to delete everything else from *init*.py except for the Versioneer setup clause (#2748).

pip now has responsibility for ensuring that the target virtualenv has the right code at install time, and (I think) the entrypoint script has that responsibility at runtime. The code in *init*.py duplicates this, plus it frequently misfires, emitting a traceback-like warning that many users mistake for a fatal exception.

This would let us move the list of install_requires= into setup.py where it belongs, rather than the current arrangement where it lives in src/ but gets execfile()ed by setup.py (which is causing problems with py3-based tox runs, #2747).

One counter-argument I can think of: you pip install --editable . from a git checkout into a virtualenv, work for a while and everything is fine, then you do an update and get a setup.py that bumps the dependency on something. If you don't update your virtualenv every once in a while (pip list -o, pip install -U on anything it says is out-of-date), then eventually Tahoe will want more than what you've got.

I think the entrypoint script is supposed to do this checking, but you'd need to at least re-run setup.py egg_info to update the list of dependencies that it looks at. Having something at runtime would guard against this, and the shared _auto_deps.py is the cleanest way to accomplish that.

But I still think our *init*.py is too big, and I don't like having all that code run at import, and I don't think the git-update case is worth protecting against.

I think it's time we removed the (large!) chunk of code in `src/allmydata/*init*.py` that measures and checks versions of our dependencies at startup. I'd like to see a small subset of this code move into a utility function (maybe `src/allmydata/version_checks.py`): just enough to pull version strings for our known dependencies. This would support the extended form of `tahoe --version`. I think this code should *not* know what the setup.py `install_requires=` is, nor should it make any attempt to pass judgement upon whether the versions it finds are good enough. Then I'd like to delete everything else from `*init*.py` except for the Versioneer setup clause (#2748). `pip` now has responsibility for ensuring that the target virtualenv has the right code at install time, and (I think) the entrypoint script has that responsibility at runtime. The code in `*init*.py` duplicates this, plus it frequently misfires, emitting a traceback-like warning that many users mistake for a fatal exception. This would let us move the list of `install_requires=` into `setup.py` where it belongs, rather than the current arrangement where it lives in src/ but gets `execfile()`ed by `setup.py` (which is causing problems with py3-based tox runs, #2747). One counter-argument I can think of: you `pip install --editable .` from a git checkout into a virtualenv, work for a while and everything is fine, then you do an update and get a `setup.py` that bumps the dependency on something. If you don't update your virtualenv every once in a while (`pip list -o`, `pip install -U` on anything it says is out-of-date), then eventually Tahoe will want more than what you've got. I think the entrypoint script is supposed to do this checking, but you'd need to at least re-run `setup.py egg_info` to update the list of dependencies that it looks at. Having something at runtime would guard against this, and the shared `_auto_deps.py` is the cleanest way to accomplish that. But I still think our `*init*.py` is too big, and I don't like having all that code run at import, and I don't think the git-update case is worth protecting against.
warner added the
packaging
normal
defect
1.10.2
labels 2016-03-22 04:53:57 +00:00
warner added this to the undecided milestone 2016-03-22 04:53:57 +00:00
Author

#2873 brought up a case where those checks do not know as much about version strings as the real setuptools does, blocking us from changing our dependency on twistedtls to twistedtls,conch because it makes check_all_requirements() crash.

#2873 brought up a case where those checks do not know as much about version strings as the real setuptools does, blocking us from changing our dependency on `twistedtls` to `twistedtls,conch` because it makes `check_all_requirements()` crash.
GitHub <noreply@github.com> commented 2019-08-13 22:22:02 +00:00
Owner

In 15af2bb/trunk:

Merge pull request #643 from tahoe-lafs/2749.remove-__init__-version-checking

Remove version checking and other code from `allmydata/__init__.py`

Fixes: ticket:2749
In [15af2bb/trunk](/tahoe-lafs/trac-2024-07-25/commit/15af2bbcd89bc5e1112c553628250b6686ed262f): ``` Merge pull request #643 from tahoe-lafs/2749.remove-__init__-version-checking Remove version checking and other code from `allmydata/__init__.py` Fixes: ticket:2749 ```
tahoe-lafs added the
fixed
label 2019-08-13 22:22:02 +00:00
GitHub <noreply@github.com> closed this issue 2019-08-13 22:22:02 +00:00
Author

YAY!!

YAY!!
Sign in to join this conversation.
No Milestone
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Reference: tahoe-lafs/trac-2024-07-25#2749
No description provided.