mirror of
https://github.com/pmeier/light-the-torch.git
synced 2024-09-08 23:29:28 +03:00
* replace tox with doit (#42)
* replace tox with doit
* fix dev env setup
* fix dev env setup
* fix dev env setup
* apply fixes to all workflows
* try fix path
* try pip cache
* fix output location
* fix quotes
* fix quotes
* move path file extraction to script
* setup cache
* remove debug step
* add pre-commit caching
* rewrite ltt to wrap pip directly rather than use its internals
* add publish task and fix workflow
* fix publish
* update pre-commit hooks
* remove mypy
* cleanup
* add setup task
* fix some bugs
* disable output capturing on publish task
* fix publish task
* install wheel package in CI dev setup
* Rewrite smoke and computation backend tests (#44)
* fix publish task
* install wheel package in CI dev setup
* fix computation backend tests
* fix smoke tests
* delete other tests for now
* fix test workflow
* add CLI tests after rewrite (#46)
* rewrite README (#45)
* rewrite README
* update how does it work
* refactor the why section
* fix typo
Co-authored-by: James Butler <jamesobutler@users.noreply.github.com>
Co-authored-by: James Butler <jamesobutler@users.noreply.github.com>
* try appdirs to find pip cache path (#48)
* try appdirs to find pip cache path
* print
* fix app_author
* cleanup
* fix
* cleanup
* more cleanup
* refactor dodo (#47)
* refactor dodo
* fix test CI
* address review comments
Co-authored-by: Tony Fast <tony.fast@gmail.com>
Co-authored-by: Tony Fast <tony.fast@gmail.com>
* add default tasks (#49)
* fix module entrypoint (#50)
* fix candidate selection (#52)
* remove test task passthrough (#53)
* disable ROCm wheels (#54)
* fix ROCm deselection (#56)
* relax ROCm deselection even further (#57)
* add naive torch install test (#58)
* add naive torch install test
* trigger CI
* add cpuonly check
* don't fail fast
* add pytorch channel to the test matrix
* don't test LTS channel on 3.10
* add check without specifying the channel
* Revert "add check without specifying the channel"
This reverts commit 0842abf50f.
* use extra index rathe than find links for link patching (#59)
* update README
* fix Windows install
Co-authored-by: James Butler <jamesobutler@users.noreply.github.com>
Co-authored-by: Tony Fast <tony.fast@gmail.com>
27 lines
572 B
YAML
27 lines
572 B
YAML
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.1.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: mixed-line-ending
|
|
args:
|
|
- --fix=lf
|
|
- id: end-of-file-fixer
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
|
rev: v2.5.1
|
|
hooks:
|
|
- id: prettier
|
|
types_or:
|
|
- markdown
|
|
- toml
|
|
- yaml
|
|
|
|
- repo: https://github.com/omnilib/ufmt
|
|
rev: v1.3.2
|
|
hooks:
|
|
- id: ufmt
|
|
additional_dependencies:
|
|
- black == 22.1.0
|
|
- usort == 1.0.2
|