Skip to content

Commit 86dc1e5

Browse files
committed
Updated deps to address vulnerabilities, v0.2.29
1 parent 3d4c899 commit 86dc1e5

File tree

5 files changed

+889
-448
lines changed

5 files changed

+889
-448
lines changed

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,8 @@
1818
"python.linting.enabled": true,
1919
"python.autoComplete.extraPaths": [
2020
"./codepost"
21+
],
22+
"python.analysis.extraPaths": [
23+
"./codepost"
2124
]
2225
}

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ ci:
2222
pipenv run pytest --cov=codepost
2323

2424
init:
25-
pip install --upgrade pip~=18.0 pipenv==2018.10.13
25+
#pip install --upgrade pip~=22.1.9 pipenv==2018.10.13
2626
pipenv install --dev --skip-lock
27+
pipenv run pip install -U pip
2728

2829
coveralls:
2930
pipenv run coveralls
@@ -82,8 +83,10 @@ check: install
8283
# @cd docs && sphinx-build -nb html -d build/doctrees . build/html
8384

8485
publish: install
86+
pipenv run python -m pip install --upgrade pip
8587
git push origin && git push --tags origin
8688
$(MAKE) clean
89+
pip install --upgrade pip
8790
pip install --quiet twine wheel
8891
python setup.py sdist bdist_wheel
8992
twine upload dist/*

Pipfile

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,30 @@ url = "https://pypi.org/simple"
44
verify_ssl = true
55

66
[dev-packages]
7+
PyYAML = ">=5.4"
78
coveralls = "*"
89
eliot-tree = "*"
910
ipykernel = "*"
11+
ipython = ">=7.16.3"
1012
pylint = "*"
1113
pytest = ">=4.4"
1214
pytest-cov = ">=2.6"
13-
pytest-subtests = "*"
14-
PyYAML = "*"
15-
tox = "*"
1615
pytest-mock = "*"
16+
pytest-subtests = "*"
1717
requests-mock = "*"
18+
tox = "*"
1819

1920
[packages]
21+
PyYAML = ">=5.4"
2022
blessings = "*"
23+
codepost = {path = ".", editable = true}
2124
colorama = "*"
2225
eliot = "*"
26+
py = ">=1.10.0"
27+
pygments = ">=2.7.4"
2328
python-forge = "*"
24-
PyYAML = "*"
2529
requests = "*"
2630
six = "*"
27-
codepost = {path = ".",editable = true}
2831
typing = "*"
2932

3033
[requires]

0 commit comments

Comments
 (0)