-
Notifications
You must be signed in to change notification settings - Fork 39
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
build: remove requirement file #87
Changes from 6 commits
2edd364
6200b4d
8c878df
775a838
936be01
6bbb4d2
4df23c4
e3e90e2
13db599
0aeee33
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,27 @@ | |
|
||
|
||
python_requires = "~=3.6" | ||
setup_requires = ["setuptools_scm"] | ||
install_requires = ["typing_extensions>=3.6"] | ||
dev_requires = [ | ||
"black==19.10b0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The issue with this pinning is that we don't have an easy way to update it. Our pip-tools command had an update flag. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Was doing some reading https://snarky.ca/clarifying-pep-518/ |
||
"codecov==2.0.15", | ||
"coverage[toml]==5.0.1", | ||
"flake8==3.7.9", | ||
"flake8-bugbear==19.8.0", | ||
"flake8-builtins==1.4.2", | ||
"flake8-comprehensions==3.1.4", | ||
"flake8-i18n==0.1.0", | ||
"invoke==1.3.0", | ||
"isort==4.3.21", | ||
"mypy==0.761", | ||
"pip-tools==4.3.0", | ||
"py-githooks==1.1.0", | ||
"pytest==5.3.2", | ||
"semver==2.9.0", | ||
"twine==3.1.1", | ||
"wheel==0.33.6", | ||
] | ||
|
||
if sys.version_info[0] == 2: | ||
raise Exception("Only python 3 supported.") | ||
|
@@ -38,9 +59,10 @@ def readme() -> str: | |
package_dir={"": "src"}, | ||
packages=find_packages("./src"), | ||
zip_safe=False, | ||
install_requires=["typing_extensions"], | ||
setup_requires=["setuptools_scm"], | ||
entry_points={"pytest11": ["syrupy = syrupy"]}, | ||
extras_require={"dev": dev_requires}, | ||
install_requires=install_requires, | ||
setup_requires=setup_requires, | ||
python_requires=python_requires, | ||
classifiers=[ | ||
"Development Status :: 1 - Planning", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
python -m pip install ...