-
Notifications
You must be signed in to change notification settings - Fork 3
Feat/quick setup #56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
omsherikar
wants to merge
21
commits into
main
Choose a base branch
from
feat/quick-setup
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Feat/quick setup #56
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
47c4b6d
Initial plan
Copilot 03625fe
Make pre-commit installation consistent between bash and Windows scripts
Copilot 89c81e1
Improve pre-commit check to include pip package verification
Copilot 8463fae
Fix variable comparison syntax in Windows script
Copilot 9d4228d
Pin pre-commit version in requirements-dev.txt for supply-chain security
Copilot 6fb9719
Merge pull request #54 from Refactron-ai/copilot/sub-pr-53
omsherikar 743ee4d
Initial plan
Copilot 0bddf34
Fix setup_dev.sh to install pre-commit from requirements-dev.txt
Copilot 301def7
Update info message to mention both documentation and pre-commit depeβ¦
Copilot 6db07cf
Improve error message for missing pre-commit installation
Copilot 1648274
Merge pull request #57 from Refactron-ai/copilot/sub-pr-56
omsherikar c03dcd8
Initial plan
Copilot 91bbf73
Fix pre-commit version to support Python 3.8-3.9
Copilot e452a67
Remove accidentally committed wheel file and update .gitignore
Copilot 5557921
Merge pull request #58 from Refactron-ai/copilot/sub-pr-56-again
omsherikar 77b74cf
Initial plan
Copilot 15310ce
Fix pre-commit version to support Python 3.8-3.9
Copilot b8042d2
Merge pull request #59 from Refactron-ai/copilot/sub-pr-56-another-one
omsherikar e885423
Revert "Fix pre-commit version constraint for Python 3.8-3.9 compatibβ¦
omsherikar 61efc92
Merge pull request #62 from Refactron-ai/revert-59-copilot/sub-pr-56-β¦
omsherikar 21f5beb
Update requirements-dev.txt
omsherikar File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,6 +20,7 @@ parts/ | |
| sdist/ | ||
| var/ | ||
| wheels/ | ||
| *.whl | ||
| pip-wheel-metadata/ | ||
| share/python-wheels/ | ||
| *.egg-info/ | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The pre-commit command will fail on Unix/Linux systems because pre-commit is not being installed. The setup_dev.sh script only installs sphinx-related dependencies from requirements-dev.txt (see lines 64-68 which use grep to filter only sphinx packages), so adding pre-commit to requirements-dev.txt won't actually install it. You need to either: