Skip to content

Commit 6c9a785

Browse files
committed
chg test dependencies to dev
1 parent 550bac5 commit 6c9a785

File tree

3 files changed

+57
-71
lines changed

3 files changed

+57
-71
lines changed

.github/workflows/tests.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
cache: 'poetry'
3333
- name: Install dependencies
3434
run: |
35-
poetry install --with test,docs
35+
poetry install --with dev,docs
3636
- name: Black formatting
3737
run: |
3838
poetry run black sophosfirewall_python/

poetry.lock

+47-58
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+9-12
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,26 @@ version = "0.1.12"
44
description = "Python SDK for Sophos Firewall"
55
authors = ["Matt Mullen <[email protected]>"]
66
readme = "README.md"
7-
packages = [{include = "sophosfirewall_python"}]
87

98
[tool.poetry.dependencies]
10-
python = "^3.8"
11-
xmltodict = "^0.13.0"
9+
python = ">=3.9,<4.0"
1210
requests = "^2.31.0"
13-
jinja2 = "^3.1.2"
11+
Jinja2 = "^3.1.2"
1412

15-
[tool.poetry.group.test]
16-
optional = true
17-
18-
[tool.poetry.group.test.dependencies]
19-
pytest = "^7.4.0"
13+
[tool.poetry.group.dev.dependencies]
2014
bandit = "^1.7.5"
21-
black = "^23.7.0"
15+
black = "^23.9.1"
2216
pylint = "^3.0.1"
17+
pytest = "^7.4.2"
2318

2419
[tool.poetry.group.docs]
2520
optional = true
2621

2722
[tool.poetry.group.docs.dependencies]
28-
sphinx = "*"
29-
sphinx-rtd-theme = "*"
23+
sphinx = "^7.2.6"
24+
sphinx-rtd-theme = "^1.3.0"
25+
26+
3027

3128
[build-system]
3229
requires = ["poetry-core"]

0 commit comments

Comments
 (0)