Skip to content
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

Pin numpy version #50

Merged
merged 15 commits into from
Jan 31, 2024
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
19 changes: 14 additions & 5 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
# This PR is related to user story DST-XXX

### This PR is related to user story [ESS-XXXX](url_to_jira_task)

## Description
Provide a short description about the work that has been done.

## Checklist
- [ ] All COS are met.
- [ ] All integration tests pass (if applicable).
- [ ] New functions, methods and classes are added to the documentation.
- [ ] New functions, methods and classes are tested (hint: check coverage report).
- [ ] PR title is descriptive and fit for injection into release notes (see tips below)
- [ ] Correct label(s) are used


PR title tips:
* Use imperative mood
* Describe the motivation for change, issue that has been solved or what has been improved - not how
* Examples:
* Add functionality for Allan variance to sensor_4s.simulate
* Upgrade to support Python 9.10
* Remove MacOS from CI

3 changes: 1 addition & 2 deletions .github/workflows/deploy_public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install build sphinx==5.3.0 pydata_sphinx_theme==0.11.0
python -m pip install --upgrade myst_parser
python -m pip install build sphinx==5.3.0 pydata_sphinx_theme==0.11.0 myst_parser

- name: Get new version number from input
id: version_number
Expand Down
19 changes: 6 additions & 13 deletions tox-deploy.ini
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
# tox (https://tox.readthedocs.io/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.

[tox]
isolated_build = True
envlist = py39

[testenv]
install_command = pip install {opts} {packages}
deps =
setuptools
sphinx
sphinx_bootstrap_theme
whitelist_externals =
setup.py
build
sphinx==5.3.0
pydata_sphinx_theme==0.11.0
commands =
setup.py bdist_wheel --dist-dir ./build
setup.py build_sphinx --build-dir ./build
python -m build --outdir ./build
sphinx-build -b html ./docs ./build/html
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ commands = sphinx-build -W -b html -d {toxworkdir}/docs_doctree docs {toxworkdir
deps =
sphinx == 5.3.0
pydata-sphinx-theme == 0.11.0
myst_parser
myst_parser < 2.0
Loading