-
Notifications
You must be signed in to change notification settings - Fork 0
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
Update Pipfile to Correct Linting Dependencies #38
Conversation
@@ -6,7 +6,7 @@ name = "pypi" | |||
[packages] | |||
fastapi = "*" | |||
pip = "*" | |||
install = "*" |
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.
What's the reason for this change?
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.
it wouldn't build on my system with install instead of pip-install
literally googled a fix
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.
might be a python/pip/pipenv version thing but it said that package 'install' couldn't be found
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.
do you mind linking the stackoverflow/source here?
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.
Yeah you're not going to like this lol:
neo4j-labs/llm-graph-builder#567
https://pypi.org/project/pip-install/
I think they just changed the name of the package
@@ -12,7 +12,7 @@ class Config(BaseSettings): | |||
REDIS_URL: RedisDsn | |||
|
|||
JWKS_CACHE: JWKSet | None = None | |||
JWKS_URL: str = "https://platform.pennlabs.org/identity/jwks/" | |||
JWKS_URL: str = "https://platform.pennlabs.org/accounts/.well-known/jwks.json" |
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.
Nice
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.
LGTM
Since linting takes place in Github Action, the Pipfile has been updated to have linting packages be standard dependencies so they run successfully on the Github container.