Is it possible to pin a version of a debian package?
Is it possible to pin only the major version? (like with pip install "pyramid < 1.4.0" will install the latest 1.3.x but will not upgrade the major version)?
You can do this, for example, by creating a file /etc/apt/preferences.d/yourpackage as
Package: yourpackage Pin: version 7.* Pin-Priority: 999 This would allow upgrades to yourpackage to versions matching 7.*
I prefer to do this to exclude a single version, as I have many machines in "testing".I has the advantage that versions above or below will be deployed.
Package: python3-pycurl Pin: version 7.45.3-* Pin-Priority: 1