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
3 changes: 1 addition & 2 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Git
.git
# Git (keep .git for version detection)
.gitignore
.github

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,8 @@ jobs:

- name: Build package
if: matrix.python-version == '3.11'
run: python -m build
run: |
python -m build

- name: Publish package
if: matrix.python-version == '3.11'
Expand Down
3 changes: 0 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ RUN pip install --no-cache-dir -r requirements.txt
# Copy source code for installation
COPY . .

# Use setuptools_scm with the version passed from the build
ENV SETUPTOOLS_SCM_PRETEND_VERSION=$VERSION

# Install the package
RUN pip install --no-cache-dir .

Expand Down