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
54 changes: 27 additions & 27 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -295,33 +295,33 @@ jobs:
upload-logs: false


# build-test-ubuntu-minimal: # TODO: Enable again when minimal builds are stable
# name: "Local-min: ${{ matrix.mapdl-version }}"
# if: github.ref != 'refs/heads/main' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
# needs: [build-test-ubuntu-local, build-test-remote]
# uses: ./.github/workflows/test-local.yml
# permissions:
# contents: read # Needed to read repository contents for tests
# packages: read # Needed to pull Docker images from GitHub packages
# strategy:
# fail-fast: false
# matrix:
# mapdl-version: ['v25.2-ubuntu-cicd', 'v25.1-ubuntu-cicd']
# secrets:
# license-server: ${{ secrets.LICENSE_SERVER }}
# codecov-token: ${{ secrets.CODECOV_TOKEN }}
# token: ${{ secrets.GITHUB_TOKEN }}
# username: ${{ github.actor }}
# log-encryption-key: ${{ secrets.LOG_ENCRYPTION_KEY }}
# with:
# testing-minimal: true
# pytest-arguments: ''
# mapdl-version: ${{ matrix.mapdl-version }}
# file-name: "${{ matrix.mapdl-version }}-minimal"
# tags: "local,minimal"
# latest-version: "252"
# test_dpf: false
# upload-logs: false
build-test-ubuntu-minimal: # TODO: Enable again when minimal builds are stable
name: "Local-min: ${{ matrix.mapdl-version }}"
if: github.ref != 'refs/heads/main' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
needs: [build-test-ubuntu-local, build-test-remote]
uses: ./.github/workflows/test-local.yml
permissions:
contents: read # Needed to read repository contents for tests
packages: read # Needed to pull Docker images from GitHub packages
strategy:
fail-fast: false
matrix:
mapdl-version: ['v25.2-ubuntu-cicd', 'v25.1-ubuntu-cicd']
secrets:
license-server: ${{ secrets.LICENSE_SERVER }}
codecov-token: ${{ secrets.CODECOV_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
username: ${{ github.actor }}
log-encryption-key: ${{ secrets.LOG_ENCRYPTION_KEY }}
with:
testing-minimal: true
pytest-arguments: ''
mapdl-version: ${{ matrix.mapdl-version }}
file-name: "${{ matrix.mapdl-version }}-minimal"
tags: "local,minimal"
latest-version: "252"
test_dpf: false
upload-logs: false


build-test-ubuntu-console:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/doc-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,8 @@ jobs:
shell: bash
env:
BUILDER: ${{ inputs.builder }}
PYMAPDL_GRPC_TRANSPORT: 'insecure'
DPF_DEFAULT_GRPC_MODE: 'insecure'
run: |
export PYTHONFAULTHANDLER=1
xvfb-run make -C doc ${BUILDER} SPHINXOPTS="-j auto" | tee doc_build.log
Expand Down
1 change: 1 addition & 0 deletions doc/changelog.d/4372.dependencies.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Remove pyansys-tools-versioning from requirements
2 changes: 1 addition & 1 deletion minimum_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ ansys-tools-common>=0.3.0
numpy==2.2.6
platformdirs==4.5.1
psutil==7.2.1
pyansys-tools-versioning==0.6.0
ansys-tools-common==0.3.0
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ dependencies = [
"platformdirs>=3.6.0",
"protobuf>=3.12.2", # minimum required based on latest ansys-grpc-mapdl
"psutil>=5.9.4",
"pyansys-tools-versioning>=0.3.3",
"pyiges[full]>=0.3.1", # Since v0.3.0, the 'full' flag is needed in order to install 'geomdl'
"pyvista<=0.46.4",
"scipy>=1.3.0", # for sparse (consider optional?)
Expand Down
Loading