Skip to content

Commit

Permalink
v0.0.6b0
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhaopudark committed Jan 18, 2024
1 parent ea544cf commit 882e181
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
# - name: Set up Python
# uses: actions/setup-python@v5
# with:
# python-version: '3.12'
- name: Build package
shell: pwsh
run: . ./scripts/build.ps1
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/local_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
- name: Local Test
env:
OSS_ENDPOINT_NAME: ${{ secrets.OSS_ENDPOINT_NAME }}
Expand Down
3 changes: 1 addition & 2 deletions scripts/test.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if (Get-Command conda -ErrorAction SilentlyContinue) {
conda create --name $conda_env_name python=3.12 --yes
}
conda activate $conda_env_name
conda install --update-deps pandoc -c conda-forge --yes
conda install --update-deps pandoc=3.11 -c conda-forge --yes
} else {
Write-Host "Conda not detected."
if (Get-Command pandoc -ErrorAction SilentlyContinue) {
Expand All @@ -24,7 +24,6 @@ if (Get-Command conda -ErrorAction SilentlyContinue) {
}
}
}

pip install -r "${PSScriptRoot}/requirements.txt"
pip install -U pytest pytest-cov
$root_path = (Get-Item "$PSScriptRoot/..").FullName
Expand Down

0 comments on commit 882e181

Please sign in to comment.