Skip to content

Commit 29f13e7

Browse files
authored
Update dependencies (#5)
- Update Python version to >=3.6.1, because pandas has such a requirement - Remove redbaron package, because we currently don't need it - Update pandas to 1.1.3 - Update pytest to 6.1.1
1 parent 4046dee commit 29f13e7

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,12 @@ homepage = "https://github.com/exasol/udf-mock-python"
1717
keywords = ['exasol', 'udf', 'mock', 'testing']
1818

1919
[tool.poetry.dependencies]
20-
python = ">=3.6.0"
21-
pandas = "^1.1.2"
20+
python = ">=3.6.1"
21+
pandas = "^1.1.3"
2222
dill = "^0.3.2"
23-
redbaron = "^0.9.2"
2423

2524
[tool.poetry.dev-dependencies]
26-
pytest = "^6.0.2"
25+
pytest = "^6.1.1"
2726
pytest-cov = "^2.10.1"
2827

2928
[tool.dephell.main]

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
name='exasol-udf-mock-python',
2727
version='0.1.0',
2828
description='Mocking framework for Exasol Python UDFs',
29-
python_requires='>=3.6.0',
29+
python_requires='>=3.6.1',
3030
project_urls={"homepage": "https://github.com/exasol/udf-mock-python", "repository": "https://github.com/exasol/udf-mock-python"},
3131
author='Torsten Kilias',
3232
author_email='torsten.kilias@exasol.com',
@@ -35,6 +35,6 @@
3535
packages=['exasol_udf_mock_python'],
3636
package_dir={"": "."},
3737
package_data={},
38-
install_requires=['dill==0.*,>=0.3.2', 'pandas==1.*,>=1.1.2', 'redbaron==0.*,>=0.9.2'],
39-
extras_require={"dev": ["pytest==6.*,>=6.0.2", "pytest-cov==2.*,>=2.10.1"]},
38+
install_requires=['dill==0.*,>=0.3.2', 'pandas==1.*,>=1.1.3'],
39+
extras_require={"dev": ["pytest==6.*,>=6.1.1", "pytest-cov==2.*,>=2.10.1"]},
4040
)

0 commit comments

Comments
 (0)