Skip to content

Commit

Permalink
bump: version 0.2.4 → 0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jamalsenouci committed Jan 8, 2023
1 parent 737fecd commit d1ab4b2
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN if [ "${INSTALL_NODE}" = "true" ]; then su vscode -c "umask 0002 && . /usr/l
COPY requirements.txt /tmp/pip-tmp/
RUN conda install mamba -n base -c conda-forge
# install package dependencies
RUN conda install -r /tmp/pip-tmp/requirements.txt -c conda-forge && rm -rf /tmp/py-tmp
RUN conda install --file /tmp/pip-tmp/requirements.txt -c conda-forge && rm -rf /tmp/py-tmp
#RUN conda install --file /tmp/pip-tmp/requirements.txt -c conda-forge && rm -rf /tmp/py-tmp
# install dev dependencies
RUN mamba install pytest pytest-cov tox mock commitizen pre-commit pip-tools jupyter -c conda-forge
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
Expand All @@ -34,14 +34,14 @@ jobs:
- name: Test with tox
run: |
tox -- --cov-report=xml
- uses: codecov/codecov-action@v2
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODE_COV_TOKEN }}
- name: build
run: |
tox -e build
- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## v0.2.5 (2023-01-07)

### Fix

- update pypi in actions on new tag
- fixes #43
- update to pymc5

## v0.2.4 (2022-06-06)

### Fix
Expand Down
1 change: 1 addition & 0 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ dependencies:
- statsmodels
- matplotlib
- pymc
- pytensor
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ version_scheme = "no-guess-dev"

[tool.commitizen]
name = "cz_conventional_commits"
version = "0.2.4"
version = "0.2.5"
tag_format = "v$version"
1 change: 1 addition & 0 deletions requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ numpy
statsmodels
matplotlib
pymc
pytensor
6 changes: 4 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# This file is autogenerated by pip-compile with Python 3.11
# This file is autogenerated by pip-compile with Python 3.10
# by the following command:
#
# pip-compile
Expand Down Expand Up @@ -89,7 +89,9 @@ pymc==5.0.1
pyparsing==3.0.9
# via matplotlib
pytensor==2.8.11
# via pymc
# via
# -r requirements.in
# pymc
python-dateutil==2.8.2
# via
# matplotlib
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ install_requires =
statsmodels
matplotlib
pymc
pytensor
importlib-metadata; python_version<"3.8"

[options.packages.find]
Expand Down

0 comments on commit d1ab4b2

Please sign in to comment.