Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version bump 3.8.0 #342

Merged
merged 3 commits into from
Dec 13, 2024
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
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
Loading