Skip to content

Commit bde47ec

Browse files
authored
Merge pull request #334 from CITCOM-project/f-allian/CD-pipeline
Fixes to the CD Pipeline
2 parents 708e8f7 + febf7e7 commit bde47ec

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.github/workflows/publish-to-pypi.yaml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,15 @@ jobs:
1717
uses: actions/setup-python@v3
1818
with:
1919
python-version: '3.10'
20-
- name: Installing package
20+
21+
- name: Install build tools
2122
run: |
22-
pip3 install .
23-
pip3 install .[pypi]
24-
pip3 install build wheel
25-
pip3 install setuptools --upgrade
26-
pip3 install setuptools_scm
23+
pip install --upgrade pip setuptools wheel build setuptools_scm
24+
2725
- name: Build Package
2826
run: |
2927
python -m build --no-isolation
28+
3029
- name: Publish package to PyPI
3130
uses: pypa/gh-action-pypi-publish@release/v1
3231
with:

causal_testing/estimation/__init__.py

Whitespace-only changes.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Documentation = "https://causal-testing-framework.readthedocs.io/"
5656
Source = "https://github.com/CITCOM-project/CausalTestingFramework"
5757

5858
[tool.setuptools.packages]
59-
find = { }
59+
find = {}
6060

6161
[tool.setuptools_scm]
6262

0 commit comments

Comments
 (0)