Skip to content

Commit 9203c07

Browse files
author
Geode-solutions robot
committed
Merge remote-tracking branch 'origin/next'
2 parents 6630454 + bb75aa0 commit 9203c07

8 files changed

Lines changed: 43 additions & 10 deletions

File tree

.github/workflows/config.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"node": true
3+
}

.github/workflows/deploy.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,4 @@ on:
66
jobs:
77
deploy:
88
uses: Geode-solutions/actions/.github/workflows/py-deploy.yml@master
9-
with:
10-
npm: true
119
secrets: inherit

.github/workflows/test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,4 @@ on:
99
jobs:
1010
test:
1111
uses: Geode-solutions/actions/.github/workflows/py-test.yml@master
12-
with:
13-
npm: true
1412
secrets: inherit

.github/workflows/test_pr.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,4 @@ on:
77
jobs:
88
test:
99
uses: Geode-solutions/actions/.github/workflows/py-test-pr.yml@master
10-
with:
11-
npm: true
1210
secrets: inherit

mypy.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
[mypy]
22
strict = True
3-
files = src/
3+
files = src/
4+
disallow_untyped_decorators = False

requirements-internal.in

Whitespace-only changes.

requirements.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
SQLAlchemy==2.0.43
2+
Flask-SQLAlchemy==3.1.1
3+
fastjsonschema==2.21.1

requirements.txt

Lines changed: 35 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1-
SQLAlchemy==2.0.43
2-
Flask-SQLAlchemy==3.1.1
3-
fastjsonschema==2.21.1
1+
#
2+
# This file is autogenerated by pip-compile with Python 3.12
3+
# by the following command:
4+
#
5+
# pip-compile --output-file=./requirements.txt --pre ./requirements-internal.in ./requirements.in
6+
#
7+
blinker~=1.0
8+
# via flask
9+
click~=8.0
10+
# via flask
11+
fastjsonschema==2.21.1
12+
# via -r requirements.in
13+
flask~=3.0
14+
# via flask-sqlalchemy
15+
flask-sqlalchemy~=3.0
16+
# via -r requirements.in
17+
greenlet~=3.0
18+
# via sqlalchemy
19+
itsdangerous~=2.0
20+
# via flask
21+
jinja2~=3.0
22+
# via flask
23+
markupsafe~=3.0
24+
# via
25+
# flask
26+
# jinja2
27+
# werkzeug
28+
sqlalchemy~=2.0
29+
# via
30+
# -r requirements.in
31+
# flask-sqlalchemy
32+
typing-extensions~=4.0
33+
# via sqlalchemy
34+
werkzeug~=3.0
35+
# via flask

0 commit comments

Comments
 (0)