Skip to content

Commit

Permalink
Update 2024R1
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuelopez-ansys committed Feb 19, 2024
1 parent b428fd3 commit 91ed687
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
fail-fast: false
matrix:
os: [ windows-latest, ubuntu-latest ]
python-version: [ '3.8', '3.10' ]
python-version: [ '3.10' ]
runs-on: ${{ matrix.os }}
needs: [ code-style ]
steps:
Expand All @@ -73,7 +73,7 @@ jobs:
name: "Windows Tests AEDT"
strategy:
matrix:
python-version: [ '3.8', '3.10' ]
python-version: [ '3.10' ]
fail-fast: false
runs-on: [self-hosted, pyaedt, toolkits, Windows]
needs: [smoke-tests]
Expand Down
1 change: 0 additions & 1 deletion examples/toolkit/pyaedt_toolkit/run_toolkit.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ def process_desktop_properties():
"use_grpc": grpc,
}
requests.put(URL_CALL + "/properties", json=properties)
# requests.post(URL_CALL + "/launch_aedt")


# Main Execution
Expand Down
2 changes: 1 addition & 1 deletion src/ansys/aedt/toolkits/common/backend/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def installed_aedt_version() -> List:
>>> from ansys.aedt.toolkits.common.backend.api import Common
>>> toolkit_api = Common()
>>> toolkit_api.installed_aedt_version()
["2022.2", "2023.2", "2024.1"]
["2023.2", "2024.1"]
"""

# Detect existing AEDT installation
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"aedt_version" : "2023.2",
"aedt_version" : "2024.1",
"non_graphical" : true,
"active_project" : "",
"active_design": "",
Expand Down
2 changes: 1 addition & 1 deletion src/ansys/aedt/toolkits/common/backend/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
class CommonProperties(BaseModel):
"""Store common AEDT properties."""

aedt_version: str = "2023.2"
aedt_version: str = "2024.1"
non_graphical: bool = False
active_project: str = ""
active_design: str = ""
Expand Down
4 changes: 2 additions & 2 deletions tests/backend/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
The default configuration can be changed by placing a file called local_config.json in the same
directory as this module. An example of the contents of local_config.json
{
"desktop_version": "2023.2",
"desktop_version": "2024.1",
"non_graphical": false,
"use_grpc": true
}
Expand All @@ -30,7 +30,7 @@
import pytest

DEFAULT_CONFIG = {
"desktop_version": "2023.2",
"desktop_version": "2024.1",
"non_graphical": True,
"use_grpc": True,
"debug": False
Expand Down
2 changes: 1 addition & 1 deletion tests/backend/tests_aedt_api/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
An example of the contents of local_config.json:
{
"desktop_version": "2023.2",
"desktop_version": "2024.1",
"non_graphical": false,
"use_grpc": true
}
Expand Down
2 changes: 1 addition & 1 deletion tests/backend/tests_common_api/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
An example of the contents of local_config.json:
{
"desktop_version": "2023.2",
"desktop_version": "2024.1",
"non_graphical": false,
"use_grpc": true
}
Expand Down
2 changes: 1 addition & 1 deletion tests/backend/tests_edb_api/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
An example of the contents of local_config.json:
{
"desktop_version": "2023.2",
"desktop_version": "2024.1",
"non_graphical": false,
"use_grpc": true
}
Expand Down
2 changes: 1 addition & 1 deletion tests/backend/tests_rest_api/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
An example of the contents of local_config.json:
{
"desktop_version": "2023.2",
"desktop_version": "2024.1",
"non_graphical": false,
"use_grpc": true
}
Expand Down

0 comments on commit 91ed687

Please sign in to comment.