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
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ ansys-tools-filetransfer = ">=0.1,<0.3"
ansys-units = "^0.3.2"
alive-progress = "^3.1.5"
beartype = ">=0.17,<0.19"
docker = "^6.1.3"
docker = "^7.1.0"
grpcio = "^1.30.0"
grpcio-health-checking = "^1.30.0"
h5py = { version = "==3.11.0", optional = true }
Expand All @@ -56,7 +56,7 @@ pandas = "^2.0.3"
platformdirs = "^3.5.1"
psutil = "^5.9.5"
pyyaml = "^6.0"
requests = "==2.31.0"
requests = "^2.32.3"

[tool.poetry.group.docs]
optional = true
Expand Down
2 changes: 1 addition & 1 deletion src/ansys/fluent/core/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""

# major, minor, patch
version_info = 0, 21, 0
version_info = 0, 21, 1

# Nice string for the version
__version__ = ".".join(map(str, version_info))
Expand Down
1 change: 1 addition & 0 deletions tests/test_datamodel_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,7 @@ def disable_datamodel_cache(monkeypatch: pytest.MonkeyPatch):
monkeypatch.setattr(pyfluent, "DATAMODEL_USE_STATE_CACHE", False)


@pytest.mark.skip(reason="This is fixed in main branch")
@pytest.mark.fluent_version(">=23.2")
@pytest.mark.codegen_required
def test_datamodel_streaming_full_diff_state(disable_datamodel_cache, new_mesh_session):
Expand Down
1 change: 1 addition & 0 deletions tests/test_flobject.py
Original file line number Diff line number Diff line change
Expand Up @@ -1173,6 +1173,7 @@ def test_static_info_hash_identity(new_solver_session):
assert hash1 == hash2


@pytest.mark.skip(reason="This is fixed in main branch")
@pytest.mark.fluent_version(">=24.2")
def test_default_argument_names_for_commands(load_static_mixer_settings_only):
solver = load_static_mixer_settings_only
Expand Down
1 change: 1 addition & 0 deletions tests/test_new_meshing_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -1269,6 +1269,7 @@ def test_new_meshing_workflow_switching_without_dm_caching(
assert watertight.import_geometry.arguments()


@pytest.mark.skip(reason="This is fixed in main branch")
@pytest.mark.codegen_required
@pytest.mark.fluent_version(">=24.2")
def test_new_meshing_workflow_validate_arguments(new_mesh_session):
Expand Down
1 change: 1 addition & 0 deletions tests/test_reduction.py
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,7 @@ def test_reduction_does_not_modify_case(load_static_mixer_case):
assert not solver.scheme_eval.scheme_eval("(case-modified?)")


@pytest.mark.skip(reason="This is fixed in main branch")
@pytest.mark.fluent_version(">=24.2")
def test_fix_for_invalid_location_inputs(load_static_mixer_case):
solver = load_static_mixer_case
Expand Down