|
5 | 5 |
|
6 | 6 | extras_require = { |
7 | 7 | "test": [ # `test` GitHub Action jobs uses this |
8 | | - "pytest>=6.0,<7.0", # Core testing package |
| 8 | + "pytest>=6.0", # Core testing package |
9 | 9 | "pytest-xdist", # multi-process runner |
10 | 10 | "pytest-cov", # Coverage analyzer plugin |
11 | | - "hypothesis>=6.2.0,<7.0", # Strategy-based fuzzer |
12 | | - "PyGithub>=1.54,<2.0", # Necessary to pull official schema from github |
| 11 | + "hypothesis>=6.2.0,<7", # Strategy-based fuzzer |
| 12 | + "PyGithub>=1.54,<2", # Necessary to pull official schema from github |
13 | 13 | "hypothesis-jsonschema==0.19.0", # Fuzzes based on a json schema |
14 | 14 | ], |
15 | 15 | "lint": [ |
16 | | - "black>=22.3.0,<23.0", # auto-formatter and linter |
17 | | - "mypy>=0.950,<1.0", # Static type analyzer |
18 | | - "flake8>=4.0.1,<5.0", # Style linter |
19 | | - "isort>=5.10.1,<6.0", # Import sorting linter |
| 16 | + "black>=22.6.0,<23", # auto-formatter and linter |
| 17 | + "mypy>=0.971,<1", # Static type analyzer |
| 18 | + "types-requests", # Needed due to mypy typeshed |
| 19 | + "flake8>=4.0.1,<5", # Style linter |
| 20 | + "isort>=5.10.1,<6", # Import sorting linter |
20 | 21 | ], |
21 | 22 | "doc": [ |
22 | 23 | "Sphinx>=3.4.3,<4", # Documentation generator |
|
48 | 49 | with open("./README.md") as readme: |
49 | 50 | long_description = readme.read() |
50 | 51 |
|
| 52 | + |
51 | 53 | setup( |
52 | 54 | name="tokenlists", |
53 | 55 | use_scm_version=True, |
|
62 | 64 | python_requires=">=3.7.2,<3.11", |
63 | 65 | install_requires=[ |
64 | 66 | "importlib-metadata ; python_version<'3.8'", |
65 | | - "click>=8.0.1", |
66 | | - "pydantic>=1.9.0,<2.0.0", |
67 | | - "pyyaml>=6.0,<7.0", |
68 | | - "semantic-version>=2.9.0,<3", |
| 67 | + "click>=8.1.3,<9", |
| 68 | + "pydantic>=1.9.2,<2", |
| 69 | + "pyyaml>=6.0,<7", |
| 70 | + "semantic-version>=2.10.0,<3", |
| 71 | + "requests>=2.28.1,<3", |
69 | 72 | ], |
70 | 73 | entry_points={"console_scripts": ["tokenlists=tokenlists._cli:cli"]}, |
71 | 74 | extras_require=extras_require, |
|
0 commit comments