Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .codespellrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[codespell]
# custom words file
ignore-words-list = Skyflow,skyflow,skyflowapi,skyflowapis,deidentify,reidentify,detokenize,upsert,upserting,binlookup,byot,creds,fpe,devsecops,formdata,vaultid,dotenv,usecwd,runid,dateutil,Homogenous

# Skip these files and folders
skip = .git,.venv,venv,env,__pycache__,*.pyc,*.egg-info,dist,build,.idea,.vscode,*.log,requirements.txt,./skyflow/generated,setup.py

# If you want to verify it is working, you can uncomment this line to see what files it checks
# count =

# Ignore lines that match these patterns
# This ignores lines with long alphanumeric strings or UUIDs
ignore-regex = \b[A-Z0-9]{20,}\b|[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}|\b[A-Za-z0-9_]{7,}\b(?=])
4 changes: 4 additions & 0 deletions .github/workflows/shared-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ jobs:
pip install --upgrade pip setuptools wheel
python setup.py sdist bdist_wheel
pip install dist/skyflow-*.whl
pip install ".[dev]"

- name: Run Spell Check
run: codespell

- name: 'Run Tests'
run: |
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ All notable changes to this project will be documented in this file.

### Fixed

- Request headers not getting overriden due to case sensitivity
- Request headers not getting overridden due to case sensitivity

## [1.5.0] - 2022-03-22

Expand Down
2 changes: 1 addition & 1 deletion samples/service_account/signed_token_generation_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@


options = {
'ctx': 'CONTEX_ID',
'ctx': 'CONTEXT_ID',
'data_tokens': ['DATA_TOKEN1', 'DATA_TOKEN2'],
'time_to_live': 90, # in seconds
}
Expand Down
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,10 @@
'python-dotenv~=1.0.1',
'httpx'
],
extras_require={
'dev': [
'codespell',
]
},
python_requires=">=3.8",
)
Loading