Skip to content

Commit 982c8e5

Browse files
authored
MAINT: Remove install target full (#4368)
1 parent 5a0e4fb commit 982c8e5

File tree

4 files changed

+4
-23
lines changed

4 files changed

+4
-23
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ You can install PyAEDT on CPython 3.7 through 3.10 from PyPI with this command:
4545
Install PyAEDT with all extra packages (matplotlib, numpy, pandas, pyvista):
4646

4747
```sh
48-
pip install pyaedt[full]
48+
pip install pyaedt[all]
4949
```
5050

5151
You can also install PyAEDT from Conda-Forge with this command:

README_CN.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
```
5353
4. 如果你需要其他库来做后期处理,可以使用以下方法来安装它们:
5454
```sh
55-
pip install pyaedt[full]
55+
pip install pyaedt[all]
5656
```
5757

5858
## 关于 PyAEDT

doc/source/Resources/PyAEDTInstallerFromDesktop.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def install_pyaedt():
146146
else:
147147
run_command('"{}" -m pip install --upgrade pip'.format(python_exe))
148148
run_command('"{}" --default-timeout=1000 install wheel'.format(pip_exe))
149-
run_command('"{}" --default-timeout=1000 install pyaedt[full]'.format(pip_exe))
149+
run_command('"{}" --default-timeout=1000 install pyaedt[all]'.format(pip_exe))
150150
# run_command('"{}" --default-timeout=1000 install git+https://github.com/ansys/pyaedt.git@main'.format(pip_exe))
151151
run_command('"{}" --default-timeout=1000 install jupyterlab'.format(pip_exe))
152152
run_command('"{}" --default-timeout=1000 install ipython -U'.format(pip_exe))
@@ -175,7 +175,7 @@ def install_pyaedt():
175175

176176
run_command('"{}" install --no-cache-dir --no-index --find-links={} pyaedt'.format(pip_exe, unzipped_path))
177177
else:
178-
run_command('"{}" --default-timeout=1000 install pyaedt[full]'.format(pip_exe))
178+
run_command('"{}" --default-timeout=1000 install pyaedt[all]'.format(pip_exe))
179179

180180
# if is_windows:
181181
# pyaedt_setup_script = "{}/Lib/site-packages/pyaedt/misc/aedtlib_personalib_install.py".format(venv_dir)

pyproject.toml

-19
Original file line numberDiff line numberDiff line change
@@ -113,25 +113,6 @@ doc = [
113113
"sphinx_design",
114114
"sphinx_jinja",
115115
]
116-
full = [
117-
"imageio",
118-
"matplotlib==3.5.3; python_version == '3.7'",
119-
"matplotlib==3.7.3; python_version == '3.8'",
120-
"matplotlib==3.8.3; python_version > '3.8'",
121-
"numpy==1.21.6; python_version <= '3.9'",
122-
"numpy==1.26.4; python_version > '3.9'",
123-
"pandas==1.3.5; python_version == '3.7'",
124-
"pandas==2.0.3; python_version == '3.8'",
125-
"pandas==2.2.1; python_version > '3.9'",
126-
"osmnx",
127-
"vtk==9.2.6",
128-
"pyvista==0.43.3; python_version > '3.7'",
129-
"pyvista==0.38.0; python_version <= '3.7'",
130-
"SRTM.py",
131-
"utm",
132-
"scikit-rf==0.31.0",
133-
"openpyxl==3.1.2",
134-
]
135116
all = [
136117
"imageio",
137118
"matplotlib==3.5.3; python_version == '3.7'",

0 commit comments

Comments
 (0)