0

lgtm. Added some docs and requirements.txt

This commit is contained in:
rafaelsideguide 2024-06-04 16:01:21 -03:00
parent 677102e676
commit d54ec94bfd
2 changed files with 13 additions and 1 deletions

View File

@ -1,14 +1,24 @@
""" """
checks local verions against published verions. checks local verions against published verions.
Usage: # Usage:
Unix:
python .github/scripts/check_version_has_incremented.py js ./apps/js-sdk/firecrawl @mendable/firecrawl-js
Windows:
python .github\scripts\check_version_has_incremented.py js .\apps\js-sdk\firecrawl @mendable/firecrawl-js python .github\scripts\check_version_has_incremented.py js .\apps\js-sdk\firecrawl @mendable/firecrawl-js
Local version: 0.0.22 Local version: 0.0.22
Published version: 0.0.21 Published version: 0.0.21
true true
Unix:
python .github/scripts/check_version_has_incremented.py python ./apps/python-sdk/firecrawl firecrawl-py
Windows:
python .github\scripts\check_version_has_incremented.py python .\apps\python-sdk\firecrawl firecrawl-py python .github\scripts\check_version_has_incremented.py python .\apps\python-sdk\firecrawl firecrawl-py
Local version: 0.0.11 Local version: 0.0.11
Published version: 0.0.11 Published version: 0.0.11
false false

2
.github/scripts/requirements.txt vendored Normal file
View File

@ -0,0 +1,2 @@
requests
packaging