Skip to content

Commit 0d1c783

Browse files
committed
⬆️ upgrade dependencies
1 parent c1a56e5 commit 0d1c783

File tree

4 files changed

+18
-21
lines changed

4 files changed

+18
-21
lines changed

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,12 @@ classifiers = [
3838
"Topic :: Database",
3939
]
4040
dependencies = [
41-
"Click>=7.0",
41+
"Click>=8.1.3",
4242
"mysql-connector-python>=8.0.18,!=8.0.30,!=8.0.31",
4343
"pytimeparse2",
4444
"python-slugify>=7.0.0",
45-
"simplejson>=3.16.0",
46-
"six>=1.12.0",
47-
"tqdm>=4.35.0",
45+
"simplejson>=3.19.0",
46+
"tqdm>=4.65.0",
4847
"tabulate",
4948
]
5049
dynamic = ["version", "readme"]

pytest.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[pytest]
22
testpaths = tests
33
norecursedirs = .* venv env *.egg dist build
4-
minversion = 4.6.5
4+
minversion = 7.3.1
55
addopts = -rsxX -l --tb=short --strict-markers
66
timeout = 300
77
markers =

requirements_dev.txt

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
1-
Click>=7.0
2-
docker>=4.0.2
1+
Click>=8.1.3
2+
docker>=6.1.3
33
factory-boy
4-
Faker>=4.1.0
5-
mysql-connector-python>=8.0.18,!=8.0.30,!=8.0.31
6-
mysqlclient>=1.4.6
7-
pytest>=4.6.5
4+
Faker>=18.10.0
5+
mysql-connector-python>=8.0.33
6+
mysqlclient>=2.1.1
7+
pytest>=7.3.1
88
pytest-cov
99
pytest-mock
1010
pytest-timeout
1111
pytimeparse2
1212
python-slugify>=7.0.0
13-
simplejson>=3.16.0
14-
six>=1.12.0
13+
simplejson>=3.19.1
1514
sqlalchemy<2.0.0
1615
sqlalchemy-utils
1716
tox
18-
tqdm>=4.35.0
19-
packaging>=20.3
17+
tqdm>=4.65.0
18+
packaging>=23.1
2019
tabulate

tox.ini

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ envlist =
88
python3.11,
99
black,
1010
flake8,
11-
linters,
12-
setuppy
11+
linters
1312
skip_missing_interpreters = true
1413

1514
[gh-actions]
@@ -32,7 +31,7 @@ commands = pytest -v --cov=mysql_to_sqlite3 --cov-report=xml
3231
basepython = python3
3332
skip_install = true
3433
deps =
35-
black>=19.3b0
34+
black
3635
commands = black mysql_to_sqlite3 tests/
3736

3837
[testenv:isort]
@@ -49,9 +48,9 @@ skip_install = true
4948
deps =
5049
flake8
5150
flake8-colors
52-
flake8-docstrings>=1.3.1
53-
flake8-import-order>=0.9
54-
flake8-typing-imports>=1.1
51+
flake8-docstrings
52+
flake8-import-order
53+
flake8-typing-imports
5554
pep8-naming
5655
commands =
5756
flake8 mysql_to_sqlite3

0 commit comments

Comments
 (0)