-
Notifications
You must be signed in to change notification settings - Fork 547
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refreshed .gitignore for vscode. * Adding support for VSCode, black, and standardizing settings.json. * Added support for VSCode Dev Containers. * Revert "Update playbyplay.py (#337)" This reverts commit 5076fae. File updated should have been src/nba_api/live/nba/library/http.py. * Version Bump. Updated Readme * Change Log Update
- Loading branch information
Showing
7 changed files
with
74 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"containerEnv": { | ||
"PYTHON_VERSION": "3.11", | ||
"PYTHON_PATH": "" | ||
}, | ||
"features": { | ||
"ghcr.io/devcontainers/features/python:latest": { | ||
"version": "3.11" | ||
}, | ||
"ghcr.io/devcontainers-contrib/features/poetry:2": {} | ||
}, | ||
"image": "mcr.microsoft.com/devcontainers/base:debian", | ||
"name": "nba_data", | ||
"postCreateCommand": "bash .devcontainer/postCreateCommand.sh", | ||
"remoteEnv": { | ||
"PYTHONUTF8": "1" | ||
}, | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"ms-python.python" | ||
] | ||
} | ||
} | ||
} |
This file contains 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
CONSTRAINT_URL=https://raw.githubusercontent.com/apache/airflow/constraints-${AIRFLOW_VERSION}/constraints-${PYTHON_VERSION}.txt | ||
pip install --upgrade pip | ||
poetry install --no-root | ||
# pip install "apache-airflow==${AIRFLOW_VERSION}" --constraint "${CONSTRAINT_URL}" | ||
#(airflow standalone) & |
This file contains 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 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"editor.formatOnSave": true, | ||
"python.linting.flake8Enabled": true, | ||
"python.formatting.provider": "black", | ||
"python.formatting.blackArgs": [ | ||
"--line-length", | ||
"88" | ||
], | ||
"python.analysis.diagnosticSeverityOverrides": { | ||
"reportUnboundVariable": "information", | ||
"reportImplicitStringConcatenation": "warning", | ||
"reportUntypedFunctionDecorator": "information", | ||
} | ||
} |
This file contains 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 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 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