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 from pyproject #100

Open
tylergmuir opened this issue Jun 6, 2024 · 0 comments
Open

remove unused dependency from pyproject #100

tylergmuir opened this issue Jun 6, 2024 · 0 comments

Comments

@tylergmuir
Copy link

In the current iteration of pyproject.toml there is a requirement for python >= 3.5. There is also a dependency that only installs for python < 3.5.

We should be able to just remove the dependency as it should never be triggered.

So this:

dependencies = [
    'certifi >=2022.9.24',
    'six >=1.10',
    'python_dateutil >=2.5.3',
    'setuptools >=21.0.0',
    'urllib3 >= 1.26.17',
    'paramiko >=2.11.0',
    'pyjwt >=2.0.0',
    'requests >=2.20.1',
    'typing >=3.7.4.1; python_version < "3.5"',
]

Turns into this:

dependencies = [
    'certifi >=2022.9.24',
    'six >=1.10',
    'python_dateutil >=2.5.3',
    'setuptools >=21.0.0',
    'urllib3 >= 1.26.17',
    'paramiko >=2.11.0',
    'pyjwt >=2.0.0',
    'requests >=2.20.1',
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant