Skip to content

Commit

Permalink
DX: implement GitHub Actions caching (#185)
Browse files Browse the repository at this point in the history
* DX: ignore flake8 E302 error
  Already handled by black
* DX: run upgrade cron job only on 7th day of the month in order to
  integrate packages that release at the beginning of the month
* MAINT: activate and address pyright strict type checking
* MAINT: format cSpell config with Prettier
* MAINT: remove deprecated `set-output`
  https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands
* MAINT: update pip constraints and pre-commit

Co-authored-by: GitHub <noreply@github.com>
  • Loading branch information
redeboer and web-flow authored Nov 25, 2022
1 parent f156dd4 commit 0be8341
Show file tree
Hide file tree
Showing 18 changed files with 533 additions and 474 deletions.
60 changes: 30 additions & 30 deletions .constraints/py3.10.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,47 +30,47 @@ defusedxml==0.7.1
distlib==0.3.6
docutils==0.17.1
entrypoints==0.4
exceptiongroup==1.0.0
exceptiongroup==1.0.4
executing==1.2.0
fastjsonschema==2.16.2
filelock==3.8.0
fonttools==4.38.0
graphviz==0.20.1
greenlet==2.0.0
identify==2.5.8
greenlet==2.0.1
identify==2.5.9
idna==3.4
imagesize==1.4.1
importlib-metadata==5.0.0
iniconfig==1.1.1
ipykernel==6.17.0
ipykernel==6.17.1
ipympl==0.9.2
ipython==8.6.0
ipython-genutils==0.2.0
ipywidgets==8.0.2
isort==5.10.1
jedi==0.18.1
jedi==0.18.2
jinja2==3.1.2
json5==0.9.10
jsonschema==3.2.0
jupyter==1.0.0
jupyter-cache==0.5.0
jupyter-client==7.4.4
jupyter-client==7.4.7
jupyter-console==6.4.4
jupyter-core==4.11.2
jupyter-server==1.21.0
jupyter-core==5.0.0
jupyter-server==1.23.3
jupyterlab==3.5.0
jupyterlab-code-formatter==1.5.3
jupyterlab-markup==1.1.0
jupyterlab-myst==0.1.6
jupyterlab-pygments==0.2.2
jupyterlab-server==2.16.2
jupyterlab-server==2.16.3
jupyterlab-widgets==3.0.3
kiwisolver==1.4.4
latexcodec==2.0.1
livereload==2.6.3
markdown-it-py==2.1.0
markupsafe==2.1.1
matplotlib==3.6.1
matplotlib==3.6.2
matplotlib-inline==0.1.6
mdit-py-plugins==0.3.1
mdurl==0.1.2
Expand All @@ -79,29 +79,29 @@ mpl-interactions==0.22.0
mypy-extensions==0.4.3
myst-nb==0.17.1
myst-parser==0.18.1
nbclassic==0.4.7
nbclassic==0.4.8
nbclient==0.5.13
nbconvert==7.2.3
nbconvert==7.2.5
nbformat==5.7.0
nbmake==1.3.0
nest-asyncio==1.5.6
nodeenv==1.7.0
notebook==6.5.2
notebook-shim==0.2.0
numpy==1.23.4
notebook-shim==0.2.2
numpy==1.23.5
packaging==21.3
pandocfilters==1.5.0
parso==0.8.3
pathspec==0.10.1
pathspec==0.10.2
pexpect==4.8.0
pickleshare==0.7.5
pillow==9.3.0
platformdirs==2.5.2
platformdirs==2.5.4
pluggy==1.0.0
pre-commit==2.20.0
prometheus-client==0.15.0
prompt-toolkit==3.0.31
psutil==5.9.3
prompt-toolkit==3.0.33
psutil==5.9.4
ptyprocess==0.7.0
pure-eval==0.2.2
py==1.11.0
Expand All @@ -112,14 +112,14 @@ pydantic==1.10.2
pydata-sphinx-theme==0.8.1
pygments==2.13.0
pyparsing==3.0.9
pyrsistent==0.19.1
pyrsistent==0.19.2
pytest==7.2.0
python-dateutil==2.8.2
pytz==2022.6
pyyaml==6.0
pyzmq==24.0.1
qtconsole==5.3.2
qtpy==2.2.1
qtconsole==5.4.0
qtpy==2.3.0
requests==2.28.1
requests-file==1.5.1
send2trash==1.8.0
Expand All @@ -130,9 +130,9 @@ soupsieve==2.3.2.post1
sphinx==4.5.0
sphinx-autobuild==2021.3.14
sphinx-book-theme==0.3.3
sphinx-codeautolink==0.12.0
sphinx-codeautolink==0.12.1
sphinx-comments==0.0.3
sphinx-copybutton==0.5.0
sphinx-copybutton==0.5.1
sphinx-data-viewer==0.1.2
sphinx-design==0.3.0
sphinx-issues==3.0.1
Expand All @@ -145,26 +145,26 @@ sphinxcontrib-hep-pdgref==0.1.4
sphinxcontrib-htmlhelp==2.0.0
sphinxcontrib-jsmath==1.0.1
sphinxcontrib-needs==0.7.9
sphinxcontrib-plantuml==0.24
sphinxcontrib-plantuml==0.24.1
sphinxcontrib-qthelp==1.0.3
sphinxcontrib-serializinghtml==1.1.5
sqlalchemy==1.4.42
stack-data==0.6.0
sqlalchemy==1.4.44
stack-data==0.6.1
tabulate==0.9.0
terminado==0.17.0
tinycss2==1.2.1
toml==0.10.2
tomli==2.0.1
tornado==6.2
tox==3.27.0
tox==3.27.1
traitlets==5.5.0
typing-extensions==4.4.0
urllib3==1.26.12
virtualenv==20.16.6
virtualenv==20.16.7
wcwidth==0.2.5
webencodings==0.5.1
websocket-client==1.4.1
wheel==0.37.1
websocket-client==1.4.2
wheel==0.38.4
widgetsnbextension==4.0.3
zipp==3.10.0

Expand Down
50 changes: 25 additions & 25 deletions .constraints/py3.7.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ defusedxml==0.7.1
distlib==0.3.6
docutils==0.17.1
entrypoints==0.4
exceptiongroup==1.0.0
exceptiongroup==1.0.4
fastjsonschema==2.16.2
filelock==3.8.0
fonttools==4.38.0
graphviz==0.20.1
greenlet==2.0.0
identify==2.5.8
greenlet==2.0.1
identify==2.5.9
idna==3.4
imagesize==1.4.1
importlib-metadata==5.0.0
Expand All @@ -45,22 +45,22 @@ ipython==7.34.0
ipython-genutils==0.2.0
ipywidgets==8.0.2
isort==5.10.1
jedi==0.18.1
jedi==0.18.2
jinja2==3.1.2
json5==0.9.10
jsonschema==3.2.0
jupyter==1.0.0
jupyter-cache==0.5.0
jupyter-client==7.4.4
jupyter-client==7.4.7
jupyter-console==6.4.4
jupyter-core==4.11.2
jupyter-server==1.21.0
jupyter-server==1.23.3
jupyterlab==3.5.0
jupyterlab-code-formatter==1.5.3
jupyterlab-markup==1.1.0
jupyterlab-myst==0.1.6
jupyterlab-pygments==0.2.2
jupyterlab-server==2.16.2
jupyterlab-server==2.16.3
jupyterlab-widgets==3.0.3
kiwisolver==1.4.4
latexcodec==2.0.1
Expand All @@ -76,29 +76,29 @@ mpl-interactions==0.22.0
mypy-extensions==0.4.3
myst-nb==0.17.1
myst-parser==0.18.1
nbclassic==0.4.7
nbclassic==0.4.8
nbclient==0.5.13
nbconvert==7.2.3
nbconvert==7.2.5
nbformat==5.7.0
nbmake==1.3.0
nest-asyncio==1.5.6
nodeenv==1.7.0
notebook==6.5.2
notebook-shim==0.2.0
notebook-shim==0.2.2
numpy==1.21.6
packaging==21.3
pandocfilters==1.5.0
parso==0.8.3
pathspec==0.10.1
pathspec==0.10.2
pexpect==4.8.0
pickleshare==0.7.5
pillow==9.3.0
platformdirs==2.5.2
platformdirs==2.5.4
pluggy==1.0.0
pre-commit==2.20.0
prometheus-client==0.15.0
prompt-toolkit==3.0.31
psutil==5.9.3
prompt-toolkit==3.0.33
psutil==5.9.4
ptyprocess==0.7.0
py==1.11.0
pybtex==0.24.0
Expand All @@ -108,14 +108,14 @@ pydantic==1.10.2
pydata-sphinx-theme==0.8.1
pygments==2.13.0
pyparsing==3.0.9
pyrsistent==0.19.1
pyrsistent==0.19.2
pytest==7.2.0
python-dateutil==2.8.2
pytz==2022.6
pyyaml==6.0
pyzmq==24.0.1
qtconsole==5.3.2
qtpy==2.2.1
qtconsole==5.4.0
qtpy==2.3.0
requests==2.28.1
requests-file==1.5.1
send2trash==1.8.0
Expand All @@ -126,9 +126,9 @@ soupsieve==2.3.2.post1
sphinx==4.3.2 ; python_version < "3.8.0"
sphinx-autobuild==2021.3.14
sphinx-book-theme==0.3.3
sphinx-codeautolink==0.12.0
sphinx-codeautolink==0.12.1
sphinx-comments==0.0.3
sphinx-copybutton==0.5.0
sphinx-copybutton==0.5.1
sphinx-data-viewer==0.1.2
sphinx-design==0.3.0
sphinx-issues==3.0.1
Expand All @@ -141,26 +141,26 @@ sphinxcontrib-hep-pdgref==0.1.4
sphinxcontrib-htmlhelp==2.0.0
sphinxcontrib-jsmath==1.0.1
sphinxcontrib-needs==0.7.9
sphinxcontrib-plantuml==0.24
sphinxcontrib-plantuml==0.24.1
sphinxcontrib-qthelp==1.0.3
sphinxcontrib-serializinghtml==1.1.5
sqlalchemy==1.4.42
sqlalchemy==1.4.44
tabulate==0.9.0
terminado==0.17.0
tinycss2==1.2.1
toml==0.10.2
tomli==2.0.1
tornado==6.2
tox==3.27.0
tox==3.27.1
traitlets==5.5.0
typed-ast==1.5.4
typing-extensions==4.4.0
urllib3==1.26.12
virtualenv==20.16.6
virtualenv==20.16.7
wcwidth==0.2.5
webencodings==0.5.1
websocket-client==1.4.1
wheel==0.37.1
websocket-client==1.4.2
wheel==0.38.4
widgetsnbextension==4.0.3
zipp==3.10.0

Expand Down
Loading

0 comments on commit 0be8341

Please sign in to comment.