-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from teloscube/26-rejuvenate
[WIP] Rejuvenate
- Loading branch information
Showing
25 changed files
with
432 additions
and
460 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,34 @@ | ||
[flake8] | ||
|
||
## Define error messages to be ignored. | ||
ignore = | ||
## We want double hash to be allowed for comments. | ||
E266 | ||
|
||
## Defines files and directories to be excluded from checking. | ||
exclude = | ||
*.egg-info, | ||
*.py[codi], | ||
.cache, | ||
.eggs, | ||
.git, | ||
.mypy_cache, | ||
.tox, | ||
__pycache__, | ||
build, | ||
dev, | ||
dist, | ||
result, | ||
tmp | ||
|
||
## Defines maximum MCCABE complexity allowed. | ||
max-complexity = 7 | ||
|
||
## Defines the maximum line length. | ||
max-line-length = 120 | ||
|
||
## Indicates that doctests to be run. | ||
doctests = True | ||
|
||
## Indicates that we want summary statistics of error messages, if any. | ||
statistics = True |
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,19 @@ | ||
name: "Release" | ||
|
||
on: | ||
push: | ||
branches: | ||
- "main" | ||
|
||
permissions: | ||
contents: "write" | ||
pull-requests: "write" | ||
|
||
jobs: | ||
release-please: | ||
runs-on: "ubuntu-latest" | ||
|
||
steps: | ||
- name: "Release" | ||
uses: "googleapis/release-please-action@v4" | ||
|
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,35 @@ | ||
name: Test | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
runs-on: "ubuntu-latest" | ||
strategy: | ||
matrix: | ||
python: | ||
- "3.10" | ||
- "3.11" | ||
- "3.12" | ||
|
||
steps: | ||
- name: "Checkout codebase" | ||
uses: "actions/checkout@v4" | ||
- name: "Setup Python" | ||
uses: "actions/setup-python@v5" | ||
with: | ||
python-version: "${{ matrix.python }}" | ||
- name: "Install Package with Test Dependencies" | ||
run: "pip install -e \".[test]\"" | ||
- name: "Run Tests: isort" | ||
run: "isort --diff --check decaf/" | ||
- name: "Run Tests: black" | ||
run: "black --check decaf/" | ||
- name: "Run Tests: mypy" | ||
run: "mypy --namespace-packages --package decaf.api.client" | ||
- name: "Run Tests: flake8" | ||
run: "flake8" | ||
- name: "Run Tests: pytest" | ||
run: "pytest --verbose --doctest-modules" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,4 @@ | |
/pip-wheel-metadata | ||
/tmp/ | ||
__pycache__ | ||
/result |
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,3 @@ | ||
{ | ||
".": "0.0.11" | ||
} |
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 |
---|---|---|
|
@@ -84,8 +84,38 @@ | |
|
||
### 0.0.4 (2019-07-31) | ||
|
||
* 2019-07-31 a143018 Add put method to the client ([email protected]) | ||
* 2019-05-30 764faa8 Create client from profile ([email protected]) | ||
* 2019-05-18 5f52572 (chore) Bump version to 0.0.4.dev0 ([email protected]) | ||
|
||
### 0.0.3 (2019-05-18) | ||
|
||
* 2019-05-18 90e269d Merge branch '0.0.3' ([email protected]) | ||
* 2019-05-18 9eaf384 (fix) Fix README.md and setup.py ([email protected]) | ||
* 2019-05-18 bd7b714 (fix) Fix packaging ([email protected]) | ||
* 2019-05-18 79e7758 (release) Update change log ([email protected]) | ||
* 2019-05-18 2d88cb1 (release) Bump version to 0.0.3 ([email protected]) | ||
* 2019-05-18 6176470 (chore) Adapt setup to README.md ([email protected]) | ||
* 2019-05-18 0e4ad31 (chore) Convert README from .rst to .md ([email protected]) | ||
* 2019-05-18 b3e58f9 (chore) Upgrade requests dependency ([email protected]) | ||
* 2019-05-18 643cb5f (chore) Rename package to decaf.api.client ([email protected]) | ||
* 2019-04-16 bb66fda (chore) Version bumped to 0.0.3.dev0 ([email protected]) | ||
|
||
### 0.0.2 (2019-04-16) | ||
|
||
* 2019-04-16 1984637 Merge branch '0.0.2' ([email protected]) | ||
* 2019-04-16 747dd8c (release) Change log updated ([email protected]) | ||
* 2019-04-16 d3cdc74 (release) Version bumped to 0.0.2 ([email protected]) | ||
* 2019-03-07 23be6ea (improve) Support for remote value collections ([email protected]) | ||
* 2019-03-07 77c19bc (fix) Entity endpoint attribute fix ([email protected]) | ||
* 2019-03-06 d13ba17 (improve) Request timeouts and exception handling ([email protected]) | ||
* 2019-03-05 779002b (chore) Revisit dev dependencies ([email protected]) | ||
* 2019-03-05 e590bd8 (chore) Version bumped to 0.0.2.dev0 ([email protected]) | ||
|
||
### 0.0.1 (2019-03-05) | ||
|
||
* 2019-03-05 3b3ebcb Merge branch '0.0.1' ([email protected]) | ||
* 2019-03-05 d663296 (release) Change log updated ([email protected]) | ||
* 2019-03-05 b4a0bdc (release) Version bumped to 0.0.1 ([email protected]) | ||
* 2019-03-05 afd8b3b Initial code commit ([email protected]) | ||
* 2019-03-05 a90b4dc Initial commit ([email protected]) |
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
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
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,2 +1,2 @@ | ||
#: Defines the name of the :mod:`decaf.api.client` package. | ||
__version__ = "0.0.12.dev0" | ||
__version__ = "0.0.12.dev0" # x-release-please-version |
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
Oops, something went wrong.