Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unused dependency on dateutil #129

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -8,7 +8,7 @@ version = "35.0.0.20240222"
readme = "README.md"
requires-python = ">=3.7"
authors = [{name = "Square Developer Platform", email = "developers@squareup.com"}]
dependencies = ["apimatic-core~=0.2.0", "apimatic-core-interfaces~=0.1.0", "apimatic-requests-client-adapter~=0.1.0", "python-dateutil~=2.8.1", "deprecation~=2.1"]
dependencies = ["apimatic-core~=0.2.0", "apimatic-core-interfaces~=0.1.0", "apimatic-requests-client-adapter~=0.1.0", "deprecation~=2.1"]
[project.optional-dependencies]
testutils = ["pytest>=7.2.2"]
[tool.setuptools.packages.find]
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
@@ -1,5 +1,4 @@
apimatic-core~=0.2.0
apimatic-core-interfaces~=0.1.0
apimatic-requests-client-adapter~=0.1.0
python-dateutil~=2.8.1
deprecation~=2.1
1 change: 0 additions & 1 deletion setup.py
Expand Up @@ -24,7 +24,6 @@
'apimatic-core~=0.1.0',
'apimatic-core-interfaces~=0.1.0',
'apimatic-requests-client-adapter~=0.1.0',
'python-dateutil~=2.8.1',
'deprecation~=2.1'
],
tests_require=[
Expand Down
1 change: 0 additions & 1 deletion tests/api/test_locations_api.py
@@ -1,7 +1,6 @@
# -*- coding: utf-8 -*-

import json
import dateutil.parser

from tests.api.api_test_base import ApiTestBase
from apimatic_core.utilities.comparison_helper import ComparisonHelper
Expand Down