A package to make it easy for other packages to report their version.
Project description
usingversion
usingversion
is a package designed to help
other packages help their users keep tract of
what version they are using.
It was built with packages that are maintained with poetry in mind but it works in a more limited way with other approaches.
What is the Problem?
As developers, we would like to have a single source or truth for
the version number of packages we maintain. In projects that use
poetry,
this is a pyproject.toml
file, which typically begins
something like
[tool.poetry]
name = "mypackage"
version = "1.2.3"
...
Once I have put a version number there, I would like the code
import mypackage
myppackage.version
to return the version number from pyproject.toml
.
The issue is that project versions go through different
lifecycle phases. A package that has been built and published
on pypi has the version number that
started in pyproject.toml
when it was built encoded elsewhere.
But a newer version that I am actively developing, testing, or debugging
before release only has the pyproject.toml
version.
usingversion
knows about this, and knows how to find the version
in either of those places in different scenarios. It makes
mypackage.version
always work no matter how I am using or developing
or testing.
What about the +
As an added measure, to reduce confusion between development and
production environments, when the version number comes straight
from pyproject.toml
in a development environment, a +
is
appended. This indicates that the source could have been modified
in the development environment. So instead of "1.2.3"
, the
version will be reported as "1.2.3+"
.
For Package Maintainers
To use usingversion
in your package, first take
a dependency on usingversion
. In Poetry, you would
do this with
poetry add usingversion
In other environments, you might add it to e.g.
requirements.txt.
Now, just
add the following to the very end of your top-level __init__.py
:
from usingversion import getattr_with_version
__getattr__ = getattr_with_version("mypackage", __file__, __name__)
Be sure to substitute the actual name of your package for
"mypackage"
.
To test, try
import mypackage
print(f"The version of mypackage is {mypackage.version}.")
For End Users
There's really nothing all that exciting to do.
You might not even know or care that the developer
of a package you depend on chose to use usingversion
.
If a package somepackage
that you depend on uses
usingversion
then you can check the version with
import somepackage
print(f"The version of somepackage is {somepackage.version}.")
Unless the maintainters of somepackage
have chosen
otherwise, somepackage._version
is the same as
somepackage.version
so you can use whichever you
prefer.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file usingversion-0.1.2.tar.gz
.
File metadata
- Download URL: usingversion-0.1.2.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.4 Darwin/21.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d254068f7080eaa6d28a7d602d27828da3bc1a8b3bc10911f5cbb9b46877e7c8 |
|
MD5 | aaf20da72f90648ec25b769c44a84987 |
|
BLAKE2b-256 | c0bb10e660fa3381ca2ef602068f74457ed5be1934f830b3cb3b77b07fa8146b |
File details
Details for the file usingversion-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: usingversion-0.1.2-py3-none-any.whl
- Upload date:
- Size: 8.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.4 Darwin/21.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9ed8256e68d0b169f00c70f64f9a74a2d668a575032c30b12b3d13a97512fbde |
|
MD5 | 2ff91639bc898685dce172f64690fa2e |
|
BLAKE2b-256 | 88b9b6dd8e022b9a5ac39cd670c66c31fe005c5398175d6a5e127b9d2cd5f68f |