Skip to content

Commit f6d8464

Browse files
Release 0.7.12 (#530)
* Bump bcrypt from 4.1.1 to 4.1.2 in /server Bumps [bcrypt](https://github.com/pyca/bcrypt) from 4.1.1 to 4.1.2. - [Changelog](https://github.com/pyca/bcrypt/blob/main/release.py) - [Commits](pyca/bcrypt@4.1.1...4.1.2) --- updated-dependencies: - dependency-name: bcrypt dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Bump marshmallow-sqlalchemy from 0.29.0 to 0.30.0 in /server Bumps [marshmallow-sqlalchemy](https://github.com/marshmallow-code/marshmallow-sqlalchemy) from 0.29.0 to 0.30.0. - [Changelog](https://github.com/marshmallow-code/marshmallow-sqlalchemy/blob/dev/CHANGELOG.rst) - [Commits](marshmallow-code/marshmallow-sqlalchemy@0.29.0...0.30.0) --- updated-dependencies: - dependency-name: marshmallow-sqlalchemy dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Bump python-dateutil from 2.8.2 to 2.9.0.post0 in /server Bumps [python-dateutil](https://github.com/dateutil/dateutil) from 2.8.2 to 2.9.0.post0. - [Release notes](https://github.com/dateutil/dateutil/releases) - [Changelog](https://github.com/dateutil/dateutil/blob/master/NEWS) - [Commits](dateutil/dateutil@2.8.2...2.9.0.post0) --- updated-dependencies: - dependency-name: python-dateutil dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * [Release] 0.7.12 * [Fix] Python unit test failures --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 0041240 commit f6d8464

4 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/python-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ jobs:
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip
24-
pip install pytest
2524
pip install -r requirements.txt
25+
pip install -r test_requirements.txt
2626
- name: Run tests
2727
run: |
2828
python -m pytest --junitxml=junit/test-results.xml

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "client",
3-
"version": "0.7.11",
3+
"version": "0.7.12",
44
"private": true,
55
"scripts": {
66
"build": "vite build",

server/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
tornado==6.4
22
tornado-sqlalchemy==0.7.0
33
datetime==4.9
4-
python-dateutil==2.8.2
4+
python-dateutil==2.9.0.post0
55
pylint-ignore==2022.1025
6-
marshmallow-sqlalchemy==0.29.0
6+
marshmallow-sqlalchemy==0.30.0
77
tornado-prometheus==0.1.2
8-
bcrypt==4.1.1
8+
bcrypt==4.1.2
99
anytree==2.12.1

server/test_requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pytest<8.2

0 commit comments

Comments
 (0)