Skip to content

Commit a5e24af

Browse files
Merge branch 'main' into bump-pymc
2 parents 73a4f24 + f8fe267 commit a5e24af

File tree

6 files changed

+19
-7
lines changed

6 files changed

+19
-7
lines changed

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: 2
2+
updates:
3+
# Maintain dependencies for GitHub Actions
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "weekly"
8+
# Keep Python dependencies updated
9+
- package-ecosystem: "pip"
10+
directory: "/"
11+
schedule:
12+
interval: "weekly"

.github/workflows/pipeline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
ports:
1515
- 9000:9000
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
1818
with:
1919
fetch-depth: 0
2020
- name: Set up Python ${{ matrix.python-version }}
@@ -35,7 +35,7 @@ jobs:
3535
run: |
3636
pytest --cov=./mcbackend --cov-report xml --cov-report term-missing mcbackend/
3737
- name: Upload coverage
38-
uses: codecov/codecov-action@v2
38+
uses: codecov/codecov-action@v3
3939
if: matrix.python-version == 3.9
4040
with:
4141
file: ./coverage.xml

.github/workflows/pre-commit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ jobs:
1111
env:
1212
SKIP: no-commit-to-branch
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
- uses: actions/setup-python@v2
16-
- uses: pre-commit/action@v2.0.0
16+
- uses: pre-commit/action@v3.0.0

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
env:
1818
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v3
2121
with:
2222
fetch-depth: 0
2323
- name: Set up Python

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
arviz
22
clickhouse-driver
33
flake8
4-
pymc>=4.0.0
4+
pymc>=4.0.1
55
pytest
66
pytest-cov
77
twine

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
betterproto==2.0.0b3
1+
betterproto==2.0.0b4
22
hagelkorn
33
numpy
44
pandas

0 commit comments

Comments
 (0)