Skip to content

Commit 0590c92

Browse files
authored
Merge pull request #211 from asherpasha/dev
Updated dependancies, etc
2 parents 0ac725d + f16eb4e commit 0590c92

5 files changed

Lines changed: 52 additions & 20 deletions

File tree

.github/workflows/bar-api.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-22.04
1414
strategy:
1515
matrix:
16-
python-version: [3.8, 3.9, 3.10.13, 3.11, 3.12]
16+
python-version: [3.8, 3.9, 3.10.14, 3.11, 3.12]
1717

1818
services:
1919
redis:

.readthedocs.yaml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Read the Docs configuration file for Sphinx projects
2+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3+
4+
# Required
5+
version: 2
6+
7+
# Set the OS, Python version and other tools you might need
8+
build:
9+
os: ubuntu-22.04
10+
tools:
11+
python: "3.12"
12+
13+
# Build documentation in the "docs/" directory with Sphinx
14+
sphinx:
15+
configuration: docs/source/conf.py
16+
# You can configure Sphinx to use a different builder, for instance use the dirhtml builder for simpler URLs
17+
# builder: "dirhtml"
18+
# Fail on all warnings to avoid broken references
19+
fail_on_warning: true
20+
21+
# Optionally build your docs in additional formats such as PDF and ePub
22+
formats:
23+
- pdf
24+
25+
# Optional but recommended, declare the Python requirements required
26+
# to build your documentation
27+
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
28+
python:
29+
install:
30+
- requirements: docs/requirements.txt
31+
- method: pip
32+
path: .

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: "3.7"
33
services:
44

55
mysqldb:
6-
image: mysql:8.1.0
6+
image: mysql:8.3.0
77
container_name: BAR_mysqldb
88
# Must use this for mariadb client to connect
99
command: --default-authentication-plugin=mysql_native_password
@@ -12,7 +12,7 @@ services:
1212
- MYSQL_ROOT_PASSWORD=root
1313

1414
redis:
15-
image: redis:7.2.1
15+
image: redis:7.2.4
1616
container_name: BAR_redis
1717
restart: always
1818
ports:

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# -- Project information -----------------------------------------------------
1919

2020
project = "BAR API"
21-
copyright = "2023, BAR Developers"
21+
copyright = "2024, BAR Developers"
2222
author = "BAR Developers"
2323

2424
# The full version, including alpha/beta/rc tags

requirements.txt

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
11
aniso8601==9.0.1
22
async-timeout==4.0.3
33
attrs==23.2.0
4-
black==24.3.0
4+
black==24.4.1
55
blinker==1.7.0
66
cachelib==0.9.0
77
certifi==2024.2.2
88
charset-normalizer==3.3.2
99
click==8.1.7
10-
coverage==7.4.4
10+
coverage==7.5.0
1111
Deprecated==1.2.14
1212
flake8==7.0.0
13-
Flask==3.0.2
13+
Flask==3.0.3
1414
Flask-Caching==2.1.0
1515
Flask-Cors==4.0.0
16-
Flask-Limiter==3.5.1
17-
flask-marshmallow==1.2.0
16+
Flask-Limiter==3.6.0
17+
flask-marshmallow==1.2.1
1818
flask-restx==1.3.0
1919
Flask-SQLAlchemy==3.1.1
2020
greenlet==3.0.3
21-
idna==3.6
22-
importlib_resources==6.3.1
21+
idna==3.7
22+
importlib_resources==6.4.0
2323
iniconfig==2.0.0
24-
itsdangerous==2.1.2
24+
itsdangerous==2.2.0
2525
Jinja2==3.1.3
2626
jsonschema==4.21.1
2727
jsonschema-specifications==2023.12.1
28-
limits==3.10.1
28+
limits==3.11.0
2929
markdown-it-py==3.0.0
3030
MarkupSafe==2.1.5
3131
marshmallow==3.21.1
@@ -36,23 +36,23 @@ mysqlclient==2.2.4
3636
ordered-set==4.1.0
3737
packaging==24.0
3838
pathspec==0.12.1
39-
platformdirs==4.2.0
40-
pluggy==1.4.0
39+
platformdirs==4.2.1
40+
pluggy==1.5.0
4141
pycodestyle==2.11.1
4242
pyflakes==3.2.0
4343
Pygments==2.17.2
4444
pyrsistent==0.20.0
4545
pytest==8.1.1
4646
python-dateutil==2.9.0.post0
4747
pytz==2024.1
48-
redis==5.0.3
49-
referencing==0.34.0
48+
redis==5.0.4
49+
referencing==0.35.0
5050
requests==2.31.0
5151
rich==13.7.1
5252
rpds-py==0.18.0
5353
six==1.16.0
54-
SQLAlchemy==2.0.28
55-
typing_extensions==4.10.0
54+
SQLAlchemy==2.0.29
55+
typing_extensions==4.11.0
5656
urllib3==2.2.1
57-
Werkzeug==3.0.1
57+
Werkzeug==3.0.2
5858
wrapt==1.16.0

0 commit comments

Comments
 (0)