Skip to content

Commit

Permalink
MAINT: Update dependencies with ranges (#4369)
Browse files Browse the repository at this point in the history
  • Loading branch information
SMoraisAnsys committed Mar 20, 2024
2 parents f0b25a7 + 7b8afee commit 75fab9f
Show file tree
Hide file tree
Showing 3 changed files with 86 additions and 86 deletions.
1 change: 1 addition & 0 deletions _unittest_solvers/test_26_emit.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ def aedtapp(add_app):


@pytest.mark.skipif(is_linux, reason="Emit API fails on linux.")
@pytest.mark.skipif(sys.version_info < (3,8), reason="Emit API is only available for Python 3.8+.")
class TestClass:

@pytest.fixture(autouse=True)
Expand Down
1 change: 0 additions & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ def setup(app):
"sphinx_copybutton",
"sphinx_design",
"sphinx_jinja",
"recommonmark",
"sphinx.ext.graphviz",
"sphinx.ext.mathjax",
"sphinx.ext.inheritance_diagram",
Expand Down
170 changes: 85 additions & 85 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,112 +26,112 @@ classifiers = [
]

dependencies = [
"rpyc==6.0.0",
"psutil",
"fpdf2",
"jsonschema",
"pytomlpp; python_version < '3.12'",
"pyedb==0.4.0; python_version == '3.7'",
"psutil",
"pyedb>=0.4.0,<0.5; python_version == '3.7'",
"pyedb>=0.5.0,<0.6; python_version > '3.7'",
"pytomlpp; python_version < '3.12'",
"rpyc>=6.0.0,<6.1",
]

[project.optional-dependencies]
tests = [
"ipython==8.13.0; python_version < '3.9'",
"ipython==8.22.2; python_version >= '3.9'",
"imageio==2.31.5",
"joblib==1.3.2",
"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'",
"mock",
"openpyxl==3.1.2",
"osmnx",
"pandas==1.3.5; python_version == '3.7'",
"pandas==2.0.3; python_version == '3.8'",
"pandas==2.2.1; python_version > '3.9'",
"pyedb==0.4.0; python_version == '3.7'",
"imageio>=2.30.0,<2.34",
"ipython>=7.30.0,<8.23",
"joblib>=1.0.0,<1.4",
"matplotlib>=3.5.0,<3.9",
"mock>=5.1.0,<5.2",
"numpy>=1.20.0,<2",
"openpyxl>=3.1.0,<3.3",
"osmnx>=1.1.0,<1.10",
"pandas>=1.1.0,<2.3",
"pytest>=7.4.0,<8.2",
"pytest-cov>=4.0.0,<4.2",
"pytest-xdist>=3.5.0,<3.6",
"pyedb>=0.4.0,<0.5; python_version == '3.7'",
"pyedb>=0.5.0,<0.6; python_version > '3.7'",
"pytest==8.0.2",
"pytest-cov==4.1.0",
"pytest-xdist==3.5.0",
"vtk==9.2.6",
"pyvista==0.38.0; python_version <= '3.7'",
"pyvista==0.43.3; python_version > '3.7'",
"scikit-learn==1.3.0; python_version == '3.7'",
"scikit-learn==1.3.1; python_version > '3.7'",
"pyvista>=0.38.0,<0.44",
"scikit-learn>=1.0.0,<1.5",
"scikit-rf>=0.30.0,<0.33",
"SRTM.py",
"utm",
"scikit-rf==0.31.0",
"vtk==9.2.6",
]
dotnet = [
"cffi == 1.15.1;platform_system=='Linux' and python_version == '3.7'",
"cffi == 1.16.0;platform_system=='Linux' and python_version > '3.7'",
"pywin32 >= 303;platform_system=='Windows'",
"ansys-pythonnet>=3.1.0rc3",
"dotnetcore2 ==3.1.23;platform_system=='Linux'",
"cffi==1.15.1; platform_system=='Linux' and python_version == '3.7'",
"cffi>=1.16.0,<1.17; platform_system=='Linux' and python_version > '3.7'",
"dotnetcore2==3.1.23; platform_system=='Linux'",
"pywin32>=303; platform_system=='Windows'",
]
doc = [
"ansys-sphinx-theme==0.14.0",
"imageio==2.31.5",
"imageio-ffmpeg==0.4.9",
"ipython==8.13.0; python_version < '3.9'",
"ipython==8.22.2; python_version >= '3.9'",
"ipywidgets==8.1.1",
"joblib==1.3.2",
"jupyterlab==4.0.6",
"matplotlib==3.5.3; python_version == '3.7'",
"matplotlib==3.7.3; python_version == '3.8'",
"matplotlib==3.8.3; python_version > '3.8'",
"nbsphinx==0.9.3",
"numpydoc==1.5.0; python_version == '3.7'",
"numpydoc==1.6.0; python_version > '3.7'",
"osmnx",
"pypandoc==1.13",
"pytest-sphinx==0.5.0",
"vtk==9.2.6",
"pyvista==0.43.3; python_version > '3.7'",
"pyvista==0.38.0; python_version <= '3.7'",
"recommonmark==0.7.1",
"scikit-learn==1.3.0; python_version == '3.7'",
"scikit-learn==1.3.1; python_version > '3.7'",
"Sphinx==7.1.2; python_version <= '3.9'",
"Sphinx==7.2.6; python_version >= '3.9'",
"sphinx-autobuild==2024.2.4",
"sphinx-autodoc-typehints==1.24.0",
"sphinx-copybutton==0.5.2",
"sphinx-gallery==0.14.0",
"sphinx-notfound-page==1.0.0",
"sphinxcontrib-websupport==1.2.4; python_version <= '3.9'",
"sphinxcontrib-websupport==1.2.5; python_version <= '3.7'",
"ansys-sphinx-theme>=0.10.0,<0.15",
"imageio>=2.30.0,<2.35",
#"imageio-ffmpeg>=0.4.0,<0.5",
"ipython>=7.34.0; python_version == '3.7'",
"ipython>=8.13.0<8.23; python_version > '3.7'",
#"ipywidgets>=8.0.0,<8.2",
"joblib>=1.3.0,<1.4",
"jupyterlab>=4.0.0,<4.3",
"matplotlib>=3.5.0,<3.9",
"nbsphinx>=0.9.0,<0.10",
"numpydoc>=1.5.0,<1.7",
"openpyxl>=3.0.0,<3.2",
"osmnx>=1.1.0,<1.10",
"pypandoc>=1.10.0,<1.14",
#"pytest-sphinx",
"pyvista>=0.38.0,<0.44",
#"recommonmark",
#"scikit-learn",
"scikit-rf>=0.30.0,<0.33",
"Sphinx==5.3.0; python_version == '3.7'",
"Sphinx>=7.1.0,<7.3; python_version > '3.7'",
"sphinx-autobuild==2021.3.14; python_version == '3.7'",
"sphinx-autobuild==2021.3.14; python_version == '3.8'",
"sphinx-autobuild==2024.2.4; python_version > '3.8'",
#"sphinx-autodoc-typehints",
"sphinx-copybutton>=0.5.0,<0.6",
"sphinx-gallery>=0.14.0,<0.16",
"sphinx-jinja>=2.0,<2.1",
#"sphinx-notfound-page",
"sphinx_design>=0.4.0,<0.6",
#"sphinxcontrib-websupport",
"SRTM.py",
"utm",
"scikit-rf==0.31.0",
"openpyxl==3.1.2",
"sphinx_design",
"sphinx_jinja",
"vtk==9.2.6",
]
doc-noexamples = [
"ansys-sphinx-theme>=0.10.0,<0.15",
"imageio>=2.30.0,<2.35",
#"imageio-ffmpeg",
"numpydoc>=1.5.0,<1.7",
# "recommonmark",
"Sphinx==5.3.0; python_version == '3.7'",
"Sphinx>=7.1.0,<7.3; python_version > '3.7'",
"sphinx-autobuild==2021.3.14; python_version == '3.7'",
"sphinx-autobuild==2021.3.14; python_version == '3.8'",
"sphinx-autobuild==2024.2.4; python_version > '3.8'",
#"sphinx-autodoc-typehints",
"sphinx-copybutton>=0.5.0,<0.6",
"sphinx-gallery>=0.14.0,<0.16",
#"sphinx-notfound-page",
#"sphinxcontrib-websupport",
"sphinx_design>=0.4.0,<0.6",
"sphinx-jinja>=2.0,<2.1",
]
all = [
"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.9'",
"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'",
"imageio>=2.30.0,<2.35",
"matplotlib>=3.5.0,<3.9",
"numpy>=1.20.0,<2",
"openpyxl>=3.1.0,<3.3",
"osmnx>=1.1.0,<1.10",
"pandas>=1.1.0,<2.3",
"pyvista>=0.38.0,<0.44",
"scikit-rf>=0.30.0,<0.33",
"SRTM.py",
"utm",
"scikit-rf==0.31.0",
"openpyxl==3.1.2",
"vtk==9.2.6",
]

[tool.flit.module]
Expand Down

0 comments on commit 75fab9f

Please sign in to comment.