Skip to content

Commit

Permalink
fix: updates build command to install deps into container
Browse files Browse the repository at this point in the history
Signed-off-by: Jennifer Power <barnabei.jennifer@gmail.com>
  • Loading branch information
jpower432 committed Sep 9, 2024
1 parent daf39af commit f6bb8ad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/python-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,6 @@ jobs:
submodules: true
fetch-depth: 0
token: ${{ secrets.ADMIN_PAT }}
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install build tools
run: |
make develop
# This action uses Python Semantic Release v8
- name: Python Semantic Release
id: release
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ testpaths = [
]

[tool.semantic_release]
build_command = "python setup.py sdist bdist_wheel"
build_command = """
python -m pip install -e .[dev] --upgrade --upgrade-strategy eager --
python setup.py sdist bdist_wheel
"""
version_variables = ["trestle_fedramp/__init__.py:__version__"]
commit_author = "semantic-release <semantic-release>"
major_on_zero = false
Expand Down

0 comments on commit f6bb8ad

Please sign in to comment.