Skip to content

Tags: clayne/runpod-python

Tags

v1.7.13

Toggle v1.7.13's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore(main): release 1.7.13 (runpod#444)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

1.7.12

Toggle 1.7.12's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: multiprocess broke local development (runpod#430)

* restored worker_state.py to pre-multiprocess

* refactor: JobsProgress persists from pickled file .runpod_jobs.pkl

* fix: added and updated tests for pkl-persisted JobsProgress

* feat: worker simulation to rehearse how jobs scheduling + heartbeat perform

1.7.11

Toggle 1.7.11's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: Adding a sync function to runpod-python sdk to help copying wor…

…kspace between pods (runpod#426)

* Fixing UTC error

* Fixing download path errors

* Adding runpod sync command

1.7.10

Toggle 1.7.10's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
build(deps): update cryptography requirement from <45.0.0 to <46.0.0 (r…

…unpod#417)

Updates the requirements on [cryptography](https://github.com/pyca/cryptography) to permit the latest version.
- [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst)
- [Commits](pyca/cryptography@0.1...45.0.2)

---
updated-dependencies:
- dependency-name: cryptography
  dependency-version: 45.0.2
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

1.7.9

Toggle 1.7.9's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Added cpu support for pod creation from python sdk (runpod#403)

1.7.8

Toggle 1.7.8's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: skip type check for default values in validation (runpod#401)

1.7.7

Toggle 1.7.7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: streamed errors were previously swallowed (runpod#384)

This created false-positive completed tasks

1.7.6

Toggle 1.7.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fixes issue runpod#373 for required input validation (runpod#379)

* fixed and added a test case for  Input validation "not working as expected runpod#373"
* added an additional unit test for None

1.7.5

Toggle 1.7.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix: failed requests due to race conditions in the job queue vs job p…

…rogress (runpod#376)

* fix: JobsProgress is now asyncio-safe. This prevents any race conditions when job_progress.get_job_count() was checked before getting more jobs.
* fix: strict jobs count for evaluating if new jobs can be taken `jobs_needed = concurrency - queue - in progress`
* debug: better debug logs
* improved unit tests

1.7.4

Toggle 1.7.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
added parameters min_download and min_upload to create_pod (runpod#360)