Registry / devops / outdated

outdated

JSON →
library0.2.2pypypi✓ verified 84d ago

A Python library to check if a version of a PyPI package is outdated. Current version: 0.2.2. Release cadence: infrequent, last updated in 2020.

pip install outdated
INSTALL
IMPORT
SIG · OUTDATED
O
outdated
devopspythonv0.2.2
Install
2.4s avg
Import
618ms
Disk
23MB
Pass rate
10/ 10
Env Coverage10 / 10
glibc
3.93.13
musl
3.93.13
Install & Compatibility
Where this runs
tested against v0.2.2 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
py 3.103.95 runs
installs and imports cleanly · install 0.0s · import 0.652s · 21.7MB
glibc
py 3.103.95 runs
installs and imports cleanly · install 2.4s · import 0.584s · 22MB
23MB installed
● package 23MB
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

check_outdated
from outdated import check_outdated
Main function to check if a package version is outdated.

Check if a specific version of a package is outdated.

from outdated import check_outdated package = 'outdated' current_version = '0.2.2' is_outdated, latest_version = check_outdated(package, current_version) if is_outdated: print(f"Package {package} is outdated. Latest version: {latest_version}") else: print(f"Package {package} is up to date.")
outdated --version
Debug
Known issues
gotchaThe function check_outdated makes a network request to PyPI. Ensure internet connectivity; otherwise, it may raise a ConnectionError.
fix
Handle exceptions gracefully, e.g., using try/except.
affects: all
gotchaThe check is based on the local version string you provide. If you provide a malformed version (e.g., '0.2.2a'), it may not parse correctly.
fix
Use a valid PEP 440 version string.
affects: all
Errors
Common errors & fixes
ModuleNotFoundError: No module named 'outdated'
The package is not installed.
fix
Run 'pip install outdated'.
AttributeError: module 'outdated' has no attribute 'check_outdated'
Incorrect import or outdated library version.
fix
Ensure you have version 0.2.0 or later and use 'from outdated import check_outdated'.
Upgrade
Version history
0.2.2latest on PyPI · released Oct 29, 2022
Audit
Dependencies

No dependency data recorded yet.

Agent activity
2 hits · last 30 days
node
2
Resources
outdated — pip install outdated · libregistry