Skip to content

Commit

Permalink
MAINT: Remove install target full (#4368)
Browse files Browse the repository at this point in the history
  • Loading branch information
SMoraisAnsys committed Mar 18, 2024
1 parent 5a0e4fb commit 982c8e5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 23 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ You can install PyAEDT on CPython 3.7 through 3.10 from PyPI with this command:
Install PyAEDT with all extra packages (matplotlib, numpy, pandas, pyvista):

```sh
pip install pyaedt[full]
pip install pyaedt[all]
```

You can also install PyAEDT from Conda-Forge with this command:
Expand Down
2 changes: 1 addition & 1 deletion README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
```
4. 如果你需要其他库来做后期处理,可以使用以下方法来安装它们:
```sh
pip install pyaedt[full]
pip install pyaedt[all]
```

## 关于 PyAEDT
Expand Down
4 changes: 2 additions & 2 deletions doc/source/Resources/PyAEDTInstallerFromDesktop.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def install_pyaedt():
else:
run_command('"{}" -m pip install --upgrade pip'.format(python_exe))
run_command('"{}" --default-timeout=1000 install wheel'.format(pip_exe))
run_command('"{}" --default-timeout=1000 install pyaedt[full]'.format(pip_exe))
run_command('"{}" --default-timeout=1000 install pyaedt[all]'.format(pip_exe))
# run_command('"{}" --default-timeout=1000 install git+https://github.com/ansys/pyaedt.git@main'.format(pip_exe))
run_command('"{}" --default-timeout=1000 install jupyterlab'.format(pip_exe))
run_command('"{}" --default-timeout=1000 install ipython -U'.format(pip_exe))
Expand Down Expand Up @@ -175,7 +175,7 @@ def install_pyaedt():

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

# if is_windows:
# pyaedt_setup_script = "{}/Lib/site-packages/pyaedt/misc/aedtlib_personalib_install.py".format(venv_dir)
Expand Down
19 changes: 0 additions & 19 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -113,25 +113,6 @@ doc = [
"sphinx_design",
"sphinx_jinja",
]
full = [
"imageio",
"matplotlib==3.5.3; python_version == '3.7'",
"matplotlib==3.7.3; python_version == '3.8'",
"matplotlib==3.8.3; python_version > '3.8'",
"numpy==1.21.6; python_version <= '3.9'",
"numpy==1.26.4; python_version > '3.9'",
"pandas==1.3.5; python_version == '3.7'",
"pandas==2.0.3; python_version == '3.8'",
"pandas==2.2.1; python_version > '3.9'",
"osmnx",
"vtk==9.2.6",
"pyvista==0.43.3; python_version > '3.7'",
"pyvista==0.38.0; python_version <= '3.7'",
"SRTM.py",
"utm",
"scikit-rf==0.31.0",
"openpyxl==3.1.2",
]
all = [
"imageio",
"matplotlib==3.5.3; python_version == '3.7'",
Expand Down

0 comments on commit 982c8e5

Please sign in to comment.