Skip to content

Commit

Permalink
fix: Relax version constraints of requirements and separate them
Browse files Browse the repository at this point in the history
- Version constraints relaxed by setting >=
- Separate production package dependencies from development environemnt dependencies in Pipfile
- Add missing dependency on py, introduced by a dependency declaration error in
  a package used by pytest, see:

  pytest-dev/pytest#10420

Issue-Id: jackdewinter#708
  • Loading branch information
arwedus committed Jul 13, 2023
1 parent f2485f2 commit 167bb25
Show file tree
Hide file tree
Showing 3 changed files with 369 additions and 209 deletions.
13 changes: 7 additions & 6 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@ url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]

[packages]
black = "==23.3.0"
isort = "==5.12.0"
flake8 = "==6.0.0"
flake8-bugbear = "==23.3.23"
flake8-bandit = "==4.1.1"
mypy = "==1.2.0"
pre-commit = "==3.2.2"
project-summarizer = "==0.5.0"
pylint = "==2.17.2"
Expand All @@ -25,12 +24,14 @@ pytest-xdist = "==3.2.1"
setuptools = "==65.3.0"
snakeviz = "==2.1.1"
twine = "==4.0.2"
typing-extensions = "==4.7.1"
mypy = "==1.2.0"
columnar = "==1.4.1"
coverage = "==7.2.3"
sourcery = "==1.2.0"
application-properties = "==0.7.0"
py = "*"

[packages]
typing-extensions = ">=4.7.1"
columnar = ">=1.4.1"
application-properties = ">=0.7.0"

[requires]
python_version = "3.8"
Expand Down
Loading

0 comments on commit 167bb25

Please sign in to comment.