Skip to content

Set python packages version for dependabot. #1048

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: "pip" # See documentation for possible values
directory: "/" # Location of package manifests
insecure-external-code-execution: allow
schedule:
interval: "daily"
labels:
- "maintenance"
- "dependencies"
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,7 @@ dist/
/htmlcov/
/coverage.xml
/_unittest/local_config.json
test-output.xml

# Scratch Jupyter Notebooks
scratch_notebooks/
Expand All @@ -376,3 +377,4 @@ edb.def\+
model.index.bak
model.index.tmp
model.index\+

14 changes: 7 additions & 7 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
# #############################################################################
# requirements
# #############################################################################
pywin32 >= 303; python_version > '2.7'
pywin32==303; python_version > '2.7'
# https://github.com/mhammond/pywin32
# License: PSF

pythonnet >= 2.4.0; python_version > '2.7'
pythonnet==2.5.2; python_version > '2.7'
# https://github.com/pythonnet/pythonnet
# License: MIT

rpyc >= 5.0.1; python_version > '2.7'
rpyc==5.0.1; python_version > '2.7'
# https://github.com/tomerfiliba-org/rpyc
# License: MIT

# #############################################################################
# optional
# #############################################################################

pyvista <= 0.33.3; python_version > '2.7'
pyvista==0.33.3; python_version > '2.7'
# License: MIT

matplotlib
matplotlib==3.5.1
# License: https://github.com/matplotlib/matplotlib/blob/master/LICENSE/LICENSE
# License: PSF

numpy
numpy==1.22.3
# License: BSD-3-Clause License

ipython
ipython==8.2.0
# License: BSD-3-Clause License
35 changes: 17 additions & 18 deletions requirements_docs.txt
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
recommonmark
matplotlib
imageio>=2.5.0
imageio-ffmpeg
pyvista<=0.33.3
numpy
numpydoc
recommonmark==0.7.1
matplotlib==3.5.1
imageio==2.16.2
imageio-ffmpeg==0.4.7
pyvista==0.33.3
numpydoc==1.2.1
Sphinx==4.5.0
sphinx-autobuild
sphinxcontrib-websupport
pytest-sphinx
sphinx-notfound-page>=0.3.0
sphinx-copybutton
sphinx-gallery>=0.8.1
sphinx-autodoc-typehints
pyansys_sphinx_theme
pypandoc
nbsphinx
ipywidgets
sphinx-autobuild==2021.3.14
sphinxcontrib-websupport==1.2.4
pytest-sphinx==0.4.0
sphinx-notfound-page==0.8
sphinx-copybutton==0.5.0
sphinx-gallery==0.10.1
sphinx-autodoc-typehints==1.18.1
pyansys-sphinx-theme==0.2.3
pypandoc==1.7.5
nbsphinx==0.8.8
ipywidgets==7.7.0
2 changes: 1 addition & 1 deletion requirements_style.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
codespell==2.1.0
flake8==3.9.2
black==22.1.0
pre-commit >= ^2.15.0
pre-commit==2.18.1
10 changes: 5 additions & 5 deletions requirements_test.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pyvista<=0.33.3
matplotlib
numpy
pyvista==0.33.3
matplotlib==3.5.1
numpy==1.22.3
pytest==7.0.0
pytest-cov
codecov
pytest-cov==3.0.0
codecov==2.1.12