Skip to content

Commit

Permalink
fix: pinned dependencies that were missing
Browse files Browse the repository at this point in the history
  • Loading branch information
meramsey committed Feb 8, 2022
1 parent cdcd539 commit d40f113
Showing 1 changed file with 29 additions and 30 deletions.
59 changes: 29 additions & 30 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,41 +31,41 @@ packages = [ { include = "wizardwebssh", from = "src" } ]

[tool.poetry.dependencies]
python = ">=3.6.2,<4.0"
paramiko = "^2.9.2"
paramiko = "2.9.2"
tornado = "6.1"
tomlkit = "^0.9.0"
tomlkit = "0.9.1"
PyQt6 = "6.2.3"
PyQt6-Qt6 = "6.2.3"
PyQt6-sip = "13.2.1"
PyQt6-WebEngine = "6.2.1"
PyQt6-WebEngine-Qt6 = "6.2.3"
toml = ">=0.10.2"
toml = "0.10.2"

[tool.poetry.dev-dependencies]
mypy = "*"
pytest = "*"
pytest-cov = "*"
pytest-randomly = "*"
pytest-sugar = "*"
pytest-xdist = "*"
types-toml = "*"
duty = "*"
git-changelog = "*"
httpx = "*"
jinja2-cli = "*"
toml = "*"
pydocstyle = "*"
wps-light = "*"
mkdocs = "*"
mkdocs-coverage = "*"
mkdocs-macros-plugin = "*"
mkdocs-material = "*"
mkdocstrings = "*"
types-mock = "*"
types-paramiko = "*"
types-cryptography = "*"
types-ipaddress = "*"
types-enum34 = "*"
mypy = "0.931"
pytest = "7.0.0"
pytest-cov = "pytest-cov"
pytest-randomly = "3.10.3"
pytest-sugar = "0.9.4"
pytest-xdist = "2.5.0"
types-toml = "0.10.3"
duty = "0.7.0"
git-changelog = "0.5.0"
httpx = "0.22.0"
jinja2-cli = "0.8.1"
toml = "0.10.2"
pydocstyle = "6.1.1"
wps-light = "0.15.3"
mkdocs = "1.2.3"
mkdocs-coverage = "0.2.5"
mkdocs-macros-plugin = "0.6.4"
mkdocs-material = "8.1.10"
mkdocstrings = "0.17.0"
types-mock = "4.0.10"
types-paramiko = "2.8.12"
types-cryptography = "3.3.15"
types-ipaddress = "1.0.8"
types-enum34 = "1.1.8"

[tool.poetry.scripts]
wssh = "wizardwebssh.main:main"
Expand Down Expand Up @@ -97,7 +97,6 @@ flake8-tidy-imports
flake8-variables-names"""

[tool.pyprojectx.aliases]
pw = "px"
install = "poetry install"
run = "poetry run"
outdated = "poetry show --outdated"
Expand All @@ -117,7 +116,7 @@ clean-all = "pw@ clean && rm -rf .pyprojectx"
black = "black src tests duties.py docs/macros.py"
isort = "isort src tests duties.py docs/macros.py"
format = """\
flake8: autoflake -ir --exclude tests/fixtures --remove-all-unused-imports src tests duties.py docs/macros.py
@flake8: autoflake -ir --exclude tests/fixtures --remove-all-unused-imports src tests duties.py docs/macros.py
isort src tests duties.py docs/macros.py
black src tests duties.py docs/macros.py
"""
Expand All @@ -126,7 +125,7 @@ check-pylint = "pylint src tests docs/macros.py"
check-black = "black src tests docs/macros.py --check"
check = "pw@ check-black && pw@ check-pylint && pw@ test"
check-all = "pw@ check_code_quality && pw@ check_types && pw@ check_docs && pw@ check_safety"
check_types = "mypy --config-file config/mypy.ini src tests duties.py docs/macros.py"
check_types = "poetry run mypy --config-file config/mypy.ini src tests duties.py docs/macros.py"
check_safety = "poetry export -f requirements.txt --without-hashes | safety check --stdin --full-report"
check_code_quality = "flake8 --config=config/flake8.ini src tests duties.py docs/macros.py"
check_docs = """\
Expand Down

0 comments on commit d40f113

Please sign in to comment.