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>
137 lines
1.8 KiB
Plaintext
137 lines
1.8 KiB
Plaintext
light_the_torch/_version.py
|
|
|
|
.doit.db*
|
|
|
|
# Byte-compiled / optimized / DLL files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# C extensions
|
|
*.so
|
|
|
|
# Distribution / packaging
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
pip-wheel-metadata/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# PyInstaller
|
|
# Usually these files are written by a python script from a template
|
|
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# Unit test / coverage reports
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
*.py,cover
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
|
|
# Translations
|
|
*.mo
|
|
*.pot
|
|
|
|
# Django stuff:
|
|
*.log
|
|
local_settings.py
|
|
db.sqlite3
|
|
db.sqlite3-journal
|
|
|
|
# Flask stuff:
|
|
instance/
|
|
.webassets-cache
|
|
|
|
# Scrapy stuff:
|
|
.scrapy
|
|
|
|
# Sphinx documentation
|
|
docs/_build/
|
|
|
|
# PyBuilder
|
|
target/
|
|
|
|
# Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
|
|
# IPython
|
|
profile_default/
|
|
ipython_config.py
|
|
|
|
# pyenv
|
|
.python-version
|
|
|
|
# pipenv
|
|
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
# install all needed dependencies.
|
|
#Pipfile.lock
|
|
|
|
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
|
|
__pypackages__/
|
|
|
|
# Celery stuff
|
|
celerybeat-schedule
|
|
celerybeat.pid
|
|
|
|
# SageMath parsed files
|
|
*.sage.py
|
|
|
|
# Environments
|
|
.env
|
|
.venv
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# Spyder project settings
|
|
.spyderproject
|
|
.spyproject
|
|
|
|
# Rope project settings
|
|
.ropeproject
|
|
|
|
# PyCharm project settings
|
|
.idea
|
|
|
|
# mkdocs documentation
|
|
/site
|
|
|
|
# mypy
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
|
|
# Pyre type checker
|
|
.pyre/
|