Skip to content

Commit

Permalink
Merge branch 'main' into bump-pymc
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelosthege authored Jun 20, 2022
2 parents 73a4f24 + f8fe267 commit a5e24af
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 7 deletions.
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: 2
updates:
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
# Keep Python dependencies updated
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
4 changes: 2 additions & 2 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
ports:
- 9000:9000
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -35,7 +35,7 @@ jobs:
run: |
pytest --cov=./mcbackend --cov-report xml --cov-report term-missing mcbackend/
- name: Upload coverage
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
if: matrix.python-version == 3.9
with:
file: ./coverage.xml
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ jobs:
env:
SKIP: no-commit-to-branch
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/setup-python@v2
- uses: pre-commit/action@v2.0.0
- uses: pre-commit/action@v3.0.0
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
arviz
clickhouse-driver
flake8
pymc>=4.0.0
pymc>=4.0.1
pytest
pytest-cov
twine
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
betterproto==2.0.0b3
betterproto==2.0.0b4
hagelkorn
numpy
pandas

0 comments on commit a5e24af

Please sign in to comment.