Skip to content

Commit 1a55d65

Browse files
authored
Merge pull request #310 from asherpasha/dev
Dependancies updated
2 parents b59acb2 + 8e9203a commit 1a55d65

File tree

3 files changed

+30
-28
lines changed

3 files changed

+30
-28
lines changed

requirements.txt

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,61 @@
11
aniso8601==10.0.1
22
async-timeout==5.0.1
3-
attrs==25.4.0
4-
black==26.1.0
3+
attrs==26.1.0
4+
black==26.3.1
55
blinker==1.9.0
66
cachelib==0.13.0
7-
certifi==2026.1.4
8-
charset-normalizer==3.4.4
7+
certifi==2026.2.25
8+
charset-normalizer==3.4.7
99
click==8.3.1
10-
coverage==7.13.1
10+
coverage==7.13.5
1111
Deprecated==1.3.1
1212
flake8==7.3.0
13-
Flask==3.1.2
13+
Flask==3.1.3
1414
Flask-Caching==2.3.1
1515
flask-cors==6.0.2
1616
Flask-Limiter==4.1.1
17-
flask-marshmallow==1.3.0
17+
flask-marshmallow==1.4.0
1818
flask-restx==1.3.2
1919
Flask-SQLAlchemy==3.1.1
20-
greenlet==3.3.0
20+
greenlet==3.3.2
2121
idna==3.11
2222
importlib_resources==6.5.2
2323
iniconfig==2.3.0
2424
itsdangerous==2.2.0
2525
Jinja2==3.1.6
2626
jsonschema==4.26.0
2727
jsonschema-specifications==2025.9.1
28-
limits==5.6.0
28+
limits==5.8.0
2929
markdown-it-py==4.0.0
3030
MarkupSafe==3.0.3
31-
marshmallow==4.2.0
31+
marshmallow==4.2.4
3232
mccabe==0.7.0
3333
mdurl==0.1.2
3434
mypy_extensions==1.1.0
35-
mysqlclient==2.2.7
35+
mysqlclient==2.2.8
3636
ordered-set==4.1.0
3737
packaging==26.0
38-
pathspec==1.0.3
39-
platformdirs==4.5.1
38+
pathspec==1.0.4
39+
platformdirs==4.9.4
4040
pluggy==1.6.0
4141
pycodestyle==2.14.0
4242
pyflakes==3.4.0
43-
Pygments==2.19.2
43+
Pygments==2.20.0
4444
pyrsistent==0.20.0
4545
pytest==9.0.2
4646
python-dateutil==2.9.0.post0
47-
pytokens==0.4.0
48-
pytz==2025.2
49-
redis==7.1.0
47+
pytokens==0.4.1
48+
pytz==2026.1.post1
49+
redis==7.4.0
5050
referencing==0.37.0
51-
requests==2.32.5
52-
rich==14.2.0
51+
requests==2.33.1
52+
rich==14.3.3
5353
rpds-py==0.30.0
54-
setuptools==80.10.1
54+
setuptools==82.0.1
5555
six==1.17.0
56-
SQLAlchemy==2.0.46
56+
SQLAlchemy==2.0.48
5757
typing_extensions==4.15.0
5858
urllib3==2.6.3
59-
Werkzeug==3.1.5
60-
wheel==0.45.1
61-
wrapt==2.0.1
59+
Werkzeug==3.1.8
60+
wheel==0.46.3
61+
wrapt==2.1.2

tests/resources/test_proxy.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
from api import app
22
from json import load
3-
from unittest import TestCase
3+
import unittest
44

55

6-
class TestIntegrations(TestCase):
6+
@unittest.skip("External")
7+
class TestIntegrations(unittest.TestCase):
78
def setUp(self):
89
self.app_client = app.test_client()
910

tests/resources/test_thalemine.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
from api import app
22
from json import load
3-
from unittest import TestCase
3+
import unittest
44

55

6-
class TestIntegrations(TestCase):
6+
@unittest.skip("Blocked")
7+
class TestIntegrations(unittest.TestCase):
78
def setUp(self):
89
self.app_client = app.test_client()
910

0 commit comments

Comments
 (0)