Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/feelpp/course-rom
Browse files Browse the repository at this point in the history
  • Loading branch information
prudhomm committed Oct 3, 2024
2 parents b76af48 + 727d3ab commit e951398
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
25 changes: 13 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ jobs:
build_wheel:
runs-on: self-ubuntu-22.04
name: Build wheel
if: "!contains(github.event.head_commit.message, 'wheel skip')"
if: 0
# if: "!contains(github.event.head_commit.message, 'wheel skip')"
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -22,9 +23,9 @@ jobs:
-
name: Create Virtual Environment
run: |
python3 -m venv .venv
python3 -m venv --system-site-packages .venv
source .venv/bin/activate
pip3 install -r requirements.txt
pip3 install -I -r requirements.txt
npm install
npx downdoc -o README.md README.adoc
-
Expand All @@ -44,7 +45,7 @@ jobs:
docs:
runs-on: self-ubuntu-24.04
name: Build Antora Site
needs: build_wheel
# needs: build_wheel
if: "!contains(github.event.head_commit.message, 'docs skip')"
steps:
- uses: actions/checkout@v4
Expand All @@ -57,19 +58,19 @@ jobs:
GITHUB_OAUTH: ${{ secrets.CR_PAT_WORKFLOW }}
- name: Install NPM dependencies
run: npm install
- name: Download
uses: actions/download-artifact@v3
with:
# Artifact name
name: wheel-artifacts
path: dist/
# - name: Download
# uses: actions/download-artifact@v3
# with:
# # Artifact name
# name: wheel-artifacts
# path: dist/
- name: Install Python dependencies
run: |
python -m venv --system-site-packages .venv
source .venv/bin/activate
pip3 install -r requirements.txt
pip3 install dist/*.whl
tree .venv
# pip3 install dist/*.whl
# tree .venv
- name: Build Antora Site
run: |
source .venv/bin/activate
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pyproject-metadata
ipykernel
numpy
scipy
pandas
pandas < 2.2
tabulate
plotly

0 comments on commit e951398

Please sign in to comment.