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

Requirements updates #91

Merged
merged 14 commits into from
Nov 11, 2022
Merged
Changes from 1 commit
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
Prev Previous commit
Add dev requirements block and pin dependency versions
  • Loading branch information
digitaldogsbody committed Nov 11, 2022
commit 669968d7d2a24b4c23583cfe044f371851d14b0f
23 changes: 17 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,25 @@
VERSION = "local_test_version"

REQUIREMENTS = [
"pydantic",
"requests",
"Pillow"
"pydantic >= 1.9.0, <2.0.0",
"requests >=2.28.0, <3.0.0",
"Pillow >=9.1.1, <10.0.0"
]

DOCS_REQUIREMENTS = [
"mkdocs",
"mkdocs-material",
"mkdocstrings-python",
"mkdocs >=1.4.0, <2.0.0",
"mkdocs-material >=8.0.0, <9.0.0",
"mkdocstrings-python >=0.7.0, <1.0.0",
]

DEV_REQUIREMENTS = [
"autopep8 >=1.6.0, <2.0.0",
"isort >=5.10.1, <6.0.0",
"flake8 >=4.0.1, <5.0.0",
"flake8-docstrings >=1.6.0, <2.0.0",
"flake8-isort >=4.1.1, <5.0.0",
"tox >=3.25.0, <4.0.0",
"Pillow >=9.1.1, <10.0.0"
]

# Setting up
Expand Down Expand Up @@ -56,5 +66,6 @@
install_requires=REQUIREMENTS,
extras_require={
"docs": DOCS_REQUIREMENTS,
"dev": DEV_REQUIREMENTS,
},
)