Skip to content

Commit

Permalink
Version bump 3.8.0 (#342)
Browse files Browse the repository at this point in the history
* bumping tacs/mphys version in setup.py

* Updating conda deploy process
  • Loading branch information
timryanb authored Dec 13, 2024
1 parent 9c9e085 commit 17b811c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_conda_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,5 +101,5 @@ jobs:
conda install anaconda-client conda-build conda-verify -q -y;
conda config --set anaconda_upload no;
cd ${TACS_DIR}/conda;
conda build --variants "{scalar: ${{ matrix.SCALAR }}}" -c conda-forge -c smdogroup $BUILD_ARGS --output-folder . .;
conda build --variants "{scalar: ${{ matrix.SCALAR }}}" -c smdogroup -c conda-forge $BUILD_ARGS --output-folder . .;
anaconda upload --label $LABEL ${{ matrix.TARGET }}/*.tar.bz2 --force;
2 changes: 1 addition & 1 deletion conda/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ mv ${TACS_DIR}/lib/libtacs.${SO_EXT} ${PREFIX}/lib;
mkdir ${PREFIX}/include/tacs;
find ${TACS_DIR}/src/ -name '*.h' -exec cp -prv '{}' ${PREFIX}/include/tacs ';'

CFLAGS=${PIP_FLAGS} ${PYTHON} -m pip install --no-deps --prefix=${PREFIX} . -vv;
CPPFLAGS=${PIP_FLAGS} ${PYTHON} -m pip install --no-deps --prefix=${PREFIX} . -vv;

cd ${TACS_DIR}/extern/f5tovtk;
make default TACS_DIR=${TACS_DIR} \
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def get_mpi_flags():
optional_dependencies = {
"testing": ["testflo>=1.4.7"],
"docs": ["sphinx", "breathe", "sphinxcontrib-programoutput"],
"mphys": ["mphys>=2.0.0", "openmdao>=3.25.0"],
"mphys": ["mphys>=2.0.0,<3.0.0", "openmdao>=3.25.0"],
"caps2tacs": ["imageio>=2.16.1"],
}

Expand All @@ -119,7 +119,7 @@ def get_mpi_flags():

setup(
name="tacs",
version="3.7.2",
version="3.8.0",
description="Parallel finite-element analysis package",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 17b811c

Please sign in to comment.