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

Pin package versions in Setup.py #55

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ repos:
rev: 22.3.0
hooks:
- id: black
- repo: https://gitlab.com/pycqa/flake8
- repo: https://github.com/PyCQA/flake8
rev: 3.9.2
hooks:
- id: flake8
Expand Down
22 changes: 11 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,28 +88,28 @@ def get_version(version_file):
py_modules=[splitext(basename(path))[0] for path in glob("src/*.py")],
include_package_data=True,
install_requires=[
"dnspython",
"docopt",
"ipwhois",
"schema",
"dnspython == 2.0.0",
"docopt >= 0.6.2",
"ipwhois == 1.2.0",
"schema >= 0.7.5",
"setuptools >= 24.2.0",
"tqdm",
"urllib3",
"validators",
"tqdm >= 4.64.1",
"urllib3 == 1.26.12",
"validators >= 0.20.0",
],
extras_require={
"test": [
"coverage",
"coverage >= 6.5.0",
# coveralls 1.11.0 added a service number for calls from
# GitHub Actions. This caused a regression which resulted in a 422
# response from the coveralls API with the message:
# Unprocessable Entity for url: https://coveralls.io/api/v1/jobs
# 1.11.1 fixed this issue, but to ensure expected behavior we'll pin
# to never grab the regression version.
"coveralls != 1.11.0",
"pre-commit",
"pytest-cov",
"pytest",
"pre-commit >= 2.20.0",
"pytest-cov >= 4.0.0",
"pytest >= 7.2.0",
]
},
# Conveniently allows one to run the CLI tool as `findcdn`
Expand Down