Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
_modidx.py
_logs
_dummylogs
examples/data
nbs/_examples/data
_docs/
_proc/
_*/
*.bak
.gitattributes
.last_checked
Expand All @@ -21,6 +20,8 @@ code_example_snippets.py
model.json
*.bin
flaxrepo
OLD/
*.ini.backup

# Byte-compiled / optimized / DLL files
__pycache__/
Expand Down Expand Up @@ -156,4 +157,4 @@ checklink/cookies.txt
.pkg

# Quarto
.quarto
.quarto
Empty file added CONTRIBUTING.md
Empty file.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright [yyyy] [name of copyright owner]
Copyright 2022, fastai

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.PHONY: pypi prepare

pypi:
uv run python scripts/prep_pypi.py

prepare:
uv run bash scripts/build.sh
Loading