-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
linked docs/development.md as README.md, required for build/realease moved yapf to dev dependencies (from production), added toml for yapf to parse pyproject.toml removed requirements.txt modified run_tests.sh to use poetry required tools from non-slim docker image use bash to utilize alias commands
- Loading branch information
Showing
6 changed files
with
501 additions
and
17 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 @@ | ||
docs/development.md |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
steps: | ||
- id: api_python | ||
name: python:3.7-slim | ||
entrypoint: /bin/sh | ||
name: python:3.7 | ||
entrypoint: /bin/bash | ||
args: | ||
- -c | ||
- "./run_tests.sh -p" |
Large diffs are not rendered by default.
Oops, something went wrong.
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,23 @@ | ||
[tool.poetry] | ||
name = "datacommons" | ||
version = "1.4.3" | ||
description = "Python client library to access Data Commons" | ||
authors = ["Prashanth R <pradh@dev>"] | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.7.1" | ||
requests = "^2.28.1" | ||
typing-extensions = "^4.4.0" | ||
pandas = "^1.2.2" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
mock = "^4.0.3" | ||
pytest = "^7.2.0" | ||
toml = "^0.10.2" | ||
yapf = "^0.32.0" | ||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" |
This file was deleted.
Oops, something went wrong.
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