Skip to content

Update dependency tqdm to v4.67.3 - autoclosed#103

Closed
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/tqdm-4.x
Closed

Update dependency tqdm to v4.67.3 - autoclosed#103
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/tqdm-4.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Sep 2, 2025

This PR contains the following updates:

Package Change Age Confidence
tqdm (changelog) ==4.66.3==4.67.3 age confidence

Release Notes

tqdm/tqdm (tqdm)

v4.67.3: tqdm v4.67.3 stable

Compare Source

v4.67.2: tqdm v4.67.2 stable

Compare Source

  • support pandas>=3 (#​1703 <- #​1701, #​1650, #​1700)
  • fix format_interval for negative numbers (#​1703)
  • misc linting
  • framework updates (#​1704)
    • bump CI workflow & pre-commit dependencies
    • add pyupgrade
    • add py3.13 support
    • fix py3.7 tests
    • update setuptools-scm usage
    • support auto-dedented docstring when building docs in py3.13
  • tests: relax flaky benchmarks

v4.67.1: tqdm v4.67.1 stable

Compare Source

  • fix gui (matplotlib syntax) (#​1629)
  • misc test & framework updates
    • bump pytest-asyncio (#​1630)
    • fix codecov rate limit
    • fix pybuild
    • sync dependencies

v4.67.0: tqdm v4.67.0 stable

Compare Source

  • contrib.discord: replace disco-py with requests (#​1536)

v4.66.6: tqdm v4.66.6 stable

Compare Source

  • cli: zip-safe --manpath, --comppath (#​1627)
  • misc framework updates (#​1627)
    • fix pytest DeprecationWarning
    • fix snapcraft build
    • fix nbval DeprecationWarning
    • update & tidy workflows
    • bump pre-commit
    • docs: update URLs

v4.66.5: tqdm v4.66.5 stable

Compare Source

v4.66.4: tqdm v4.66.4 stable

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/tqdm-4.x branch from 199887e to 70f2b5e Compare January 31, 2026 03:26
@renovate renovate Bot changed the title Update dependency tqdm to v4.67.1 Update dependency tqdm to v4.67.2 Jan 31, 2026
@renovate renovate Bot changed the title Update dependency tqdm to v4.67.2 Update dependency tqdm to v4.67.3 Feb 4, 2026
@renovate renovate Bot force-pushed the renovate/tqdm-4.x branch from 70f2b5e to f4c2761 Compare February 4, 2026 23:40
@renovate renovate Bot force-pushed the renovate/tqdm-4.x branch from f4c2761 to d9be495 Compare March 10, 2026 07:11
NaweedAghmad added a commit that referenced this pull request Mar 11, 2026
Security and maintenance updates:
- torch: 2.7.1 → 2.8.0 (SECURITY - PR #102)
- numpy: 1.23.4 → 2.4.3 (PR #108, #100)
- matplotlib: 3.3.3 → 3.10.8 (PR #97)
- networkx: 2.5.1 → 3.6.1 (PR #107, #98)
- tqdm: 4.66.3 → 4.67.3 (PR #103)

All updates tested with 117 tests passing on Python 3.11.13
Enables merging of all 9 open dependency security PRs
NaweedAghmad added a commit that referenced this pull request Mar 11, 2026
Security and maintenance updates:
- torch: 2.7.1 → 2.8.0 (SECURITY - PR #102)
- numpy: 1.23.4 → 2.4.3 (PR #108, #100)
- matplotlib: 3.3.3 → 3.10.8 (PR #97)
- networkx: 2.5.1 → 3.6.1 (PR #107, #98)
- tqdm: 4.66.3 → 4.67.3 (PR #103)

All updates tested with 117 tests passing on Python 3.11.13
Enables merging of all 9 open dependency security PRs

Signed-off-by: naweedkhan <naweed.khan@ibm.com>
NaweedAghmad added a commit that referenced this pull request Mar 11, 2026
* ADD: Modern Python packaging with pyproject.toml

- Migrate from setup.py to PEP 621 compliant pyproject.toml
- Use hatchling as build backend
- Python 3.11+ required (networkx 3.6.1 constraint)
- Include all runtime and development dependencies
- Add tool configurations for black, pytest, ruff, flake8
- Set .python-version to 3.11 for consistency
- Enables modern tooling and reproducible builds

This addresses the foundation for merging security PRs #102-#111

Signed-off-by: naweedkhan <naweed.khan@ibm.com>

* FIX: NumPy 2.0 compatibility in tensorise function

- Update tensorise() to handle np.bool_ (NumPy 2.0) and np.bool (NumPy <2.0)
- Add proper handling for numpy boolean arrays with astype(bool)
- Add comprehensive docstring explaining compatibility
- Fixes TypeError when converting numpy scalar bools to tensors
- Maintains backward compatibility with NumPy 1.x

Resolves compatibility issues for PR #108 (numpy 2.x update)
Location: lnn/neural/activations/node.py:216-255

Signed-off-by: naweedkhan <naweed.khan@ibm.com>

* UPDATE: All dependencies to latest secure versions

Security and maintenance updates:
- torch: 2.7.1 → 2.8.0 (SECURITY - PR #102)
- numpy: 1.23.4 → 2.4.3 (PR #108, #100)
- matplotlib: 3.3.3 → 3.10.8 (PR #97)
- networkx: 2.5.1 → 3.6.1 (PR #107, #98)
- tqdm: 4.66.3 → 4.67.3 (PR #103)

All updates tested with 117 tests passing on Python 3.11.13
Enables merging of all 9 open dependency security PRs

Signed-off-by: naweedkhan <naweed.khan@ibm.com>

* MAINT: Remove setup.py in favor of pyproject.toml

- Fully migrate to modern PEP 621 packaging
- Remove problematic == to >= conversion hack
- setup.py functionality now in pyproject.toml
- Uses hatchling for building (faster, modern)
- No breaking changes - pip install still works

Part of migration to modern Python tooling

Signed-off-by: naweedkhan <naweed.khan@ibm.com>

* UPDATE: GitHub Actions to v6 with uv integration

build.yml:
- actions/checkout: v2 → v6 (PR #111)
- actions/setup-python: v2 → v6 (PR #106)
- Add astral-sh/setup-uv@v5 for faster installs
- Test Python 3.11, 3.12, 3.13 (dropped 3.10)
- Enable uv caching for faster CI runs

black.yml:
- actions/checkout: v2 → v6 (PR #111)
- Add explicit Python 3.11 setup

Estimated CI speedup: 50-70% with uv
Addresses PRs #106 and #111

Signed-off-by: naweedkhan <naweed.khan@ibm.com>

* UPDATE: Development and automation tooling

.pre-commit-config.yaml:
- pre-commit-hooks: v2.3.0 → v5.0.0
- black: 22.3.0 → 24.10.0
- Add security hooks: detect-private-key, check-merge-conflict
- Add check-added-large-files
- Set Python 3.11 for black

renovate.json:
- Group major updates separately
- Group ML frameworks (torch, numpy, etc.)
- Auto-merge safe dev tool updates
- Enhanced security alert configuration
- Add lock file maintenance for uv.lock
- Better PR organization and labeling

Improves development workflow and dependency management

Signed-off-by: naweedkhan <naweed.khan@ibm.com>

* ADD: uv.lock for reproducible builds

- Lock file with 182 resolved packages
- Ensures consistent dependency versions across environments
- Speeds up installs with uv package manager
- Generated with uv 0.10.9
- Compatible with Python 3.11+

Enables:
- Reproducible builds in CI and local dev
- Faster dependency resolution
- Better dependency conflict detection

File size: 478KB

Signed-off-by: naweedkhan <naweed.khan@ibm.com>

* ADD: Security coverage analysis and documentation

- Comprehensive security coverage analysis
- All 9 Renovate PRs addressed and verified
- torch 2.10.0 exceeds security requirement of 2.8.0
- Documents all dependency versions in uv.lock
- Lists security tooling improvements
- Updated PR description with security details

This confirms all known vulnerabilities are resolved.

Signed-off-by: naweedkhan <naweed.khan@ibm.com>

* FIX: Use approximate equality for floating-point tests

- Replace exact equality checks with tolerance-based comparison
- Fixes test_rv_or_n.py failures due to floating-point precision
- torch 2.10.0/numpy 2.4.3 have slightly different precision
- Use 1e-6 tolerance for lower/upper bound comparisons

Resolves CI test failures in Python 3.11, 3.12, 3.13

Signed-off-by: naweedkhan <naweed.khan@ibm.com>

---------

Signed-off-by: naweedkhan <naweed.khan@ibm.com>
@renovate renovate Bot changed the title Update dependency tqdm to v4.67.3 Update dependency tqdm to v4.67.3 - autoclosed Mar 11, 2026
@renovate renovate Bot closed this Mar 11, 2026
@renovate renovate Bot deleted the renovate/tqdm-4.x branch March 11, 2026 08:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants