Skip to content

Commit d1544e9

Browse files
BUILD: Refactor install targets (#6031)
Co-authored-by: pyansys-ci-bot <[email protected]>
1 parent b5da238 commit d1544e9

File tree

2 files changed

+23
-28
lines changed

2 files changed

+23
-28
lines changed

doc/changelog.d/6031.dependencies.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Refactor install targets

pyproject.toml

Lines changed: 22 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -54,28 +54,20 @@ unit-tests = [
5454
]
5555
integration-tests = [
5656
"matplotlib>=3.5.0,<3.11",
57-
"mock>=5.1.0,<5.3",
5857
"numpy>=1.20.0,<2.3",
5958
"pandas>=1.1.0,<2.3",
60-
"pytest>=7.4.0,<8.4",
61-
"pytest-cov>=4.0.0,<6.1",
59+
"pyaedt[unit-tests]",
6260
]
6361
tests = [
64-
"ipython>=7.30.0,<9.1",
65-
"matplotlib>=3.5.0,<3.11",
66-
"mock>=5.1.0,<5.3",
67-
"numpy>=1.20.0,<2.3",
62+
"ansys-tools-visualization-interface; python_version >= '3.10'",
6863
"openpyxl>=3.1.0,<3.3",
6964
"osmnx>=1.1.0,<2.1",
70-
"pandas>=1.1.0,<2.3",
71-
"pytest>=7.4.0,<8.4",
72-
"pytest-cov>=4.0.0,<6.1",
65+
"pyaedt[integration-tests]",
66+
"pytest-timeout>=2.3.0,<2.4",
7367
"pytest-xdist>=3.5.0,<3.7",
7468
"pyvista[io]>=0.38.0,<0.45",
75-
"ansys-tools-visualization-interface; python_version >= '3.10'",
76-
"tables; python_version >= '3.10'",
7769
"scikit-rf>=0.30.0,<1.7",
78-
"pytest-timeout>=2.3.0,<2.4",
70+
"tables; python_version >= '3.10'",
7971
]
8072
dotnet = [
8173
"ansys-pythonnet>=3.1.0rc3",
@@ -99,6 +91,11 @@ doc = [
9991
"pyvista[io]>=0.38.0,<0.45",
10092
"ansys-tools-visualization-interface; python_version >= '3.10'",
10193
]
94+
jupyter = [
95+
"jupyterlab>=3.6.0,<4.4",
96+
"ipython>=7.30.0,<9.1",
97+
"ipyvtklink>=0.2.0,<0.2.4",
98+
]
10299
all = [
103100
"matplotlib>=3.5.0,<3.11",
104101
"numpy>=1.20.0,<2.3",
@@ -110,23 +107,20 @@ all = [
110107
"ansys-tools-visualization-interface; python_version >= '3.10'",
111108
"tables; python_version >= '3.10'",
112109
"scikit-rf>=0.30.0,<1.7",
113-
"jupyterlab>=3.6.0,<4.4",
114-
"ipython>=7.30.0,<9.1",
115-
"ipyvtklink>=0.2.0,<0.2.4",
110+
"pyaedt[jupyter]",
116111
]
117-
# Set of dependencies used to run our examples with CPython 3.10
118112
examples = [
119-
"imageio==2.37.0",
120-
"matplotlib==3.10.1",
121-
"numpy==2.2.3",
122-
"openpyxl==3.1.5",
123-
"osmnx==2.0.2",
124-
"pandas==2.2.3",
125-
"pyvista==0.44.2",
126-
"fast-simplification==0.1.9",
127-
"joblib==1.4.2",
128-
"plotly==6.0.1",
129-
"scikit-rf==1.6.2",
113+
"imageio>=2.34.0,<2.38",
114+
"matplotlib>=3.5.0,<3.11",
115+
"numpy>=1.20.0,<2.3",
116+
"openpyxl>=3.1.0,<3.3",
117+
"osmnx>=1.1.0,<2.1",
118+
"pandas>=1.1.0,<2.3",
119+
"pyvista>=0.38.0,<0.45",
120+
"fast-simplification>=0.1.7",
121+
"joblib>=1.4.0,<1.5",
122+
"plotly>=6.0,<6.1",
123+
"scikit-rf>=0.30.0,<1.7",
130124
]
131125

132126
[tool.setuptools.dynamic]

0 commit comments

Comments
 (0)