Skip to content

Commit

Permalink
feat: added all install option for dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
creyD committed Nov 24, 2024
1 parent 2444269 commit 0418c75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.build.txt
pip install ".[all]"
python setup.py sdist bdist_wheel
- name: Build and publish
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ def get_latest_git_tag() -> str:
"build": build_requirements,
"postgres": pg_requirements,
"auth0": auth0_requirements,
"all": build_requirements + pg_requirements + auth0_requirements,
},
keywords=[
"creyPY",
Expand Down

0 comments on commit 0418c75

Please sign in to comment.