Skip to content

Commit

Permalink
Fixed Bug in nba_api.stats.endpoints._base + Deprecated Scoreboard (v…
Browse files Browse the repository at this point in the history
…1) (#465)

* updated .settings.json to recognize pytest tests.

* Deprecated endpoint Scoreboard as no longer offered by the NBA.

* Reformatted src/nba_api/stats/library/data.py for compliance with Flake8 rules.

* Removed support for Python 3.8 (deprecated).

* Fixed Bug 464. Added New Unit Tests.
  • Loading branch information
rsforbes authored Oct 10, 2024
1 parent 775108e commit 6363fe4
Show file tree
Hide file tree
Showing 13 changed files with 7,050 additions and 7,186 deletions.
1 change: 0 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ workflows:
matrix:
parameters:
image: [
"cimg/python:3.8",
"cimg/python:3.9",
"cimg/python:3.10",
"cimg/python:3.11"
Expand Down
35 changes: 20 additions & 15 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
{
"editor.formatOnSave": true,
"flake8.args": [
"--config=.flake8"
],
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"--line-length",
"88"
],
"python.analysis.diagnosticSeverityOverrides": {
"reportUnboundVariable": "information",
"reportImplicitStringConcatenation": "warning",
"reportUntypedFunctionDecorator": "information",
}
{
"editor.formatOnSave": true,
"flake8.args": [
"--config=.flake8"
],
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"--line-length",
"88"
],
"python.analysis.diagnosticSeverityOverrides": {
"reportUnboundVariable": "information",
"reportImplicitStringConcatenation": "warning",
"reportUntypedFunctionDecorator": "information",
},
"python.testing.pytestArgs": [
"tests"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true
}
184 changes: 0 additions & 184 deletions docs/nba_api/stats/endpoints/scoreboard.md

This file was deleted.

Loading

0 comments on commit 6363fe4

Please sign in to comment.