Skip to content

Commit

Permalink
Updated deps to address vulnerabilities, v0.2.29
Browse files Browse the repository at this point in the history
  • Loading branch information
jlumbroso committed Jun 7, 2022
1 parent 3d4c899 commit 86dc1e5
Show file tree
Hide file tree
Showing 5 changed files with 889 additions and 448 deletions.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,8 @@
"python.linting.enabled": true,
"python.autoComplete.extraPaths": [
"./codepost"
],
"python.analysis.extraPaths": [
"./codepost"
]
}
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@ ci:
pipenv run pytest --cov=codepost

init:
pip install --upgrade pip~=18.0 pipenv==2018.10.13
#pip install --upgrade pip~=22.1.9 pipenv==2018.10.13
pipenv install --dev --skip-lock
pipenv run pip install -U pip

coveralls:
pipenv run coveralls
Expand Down Expand Up @@ -82,8 +83,10 @@ check: install
# @cd docs && sphinx-build -nb html -d build/doctrees . build/html

publish: install
pipenv run python -m pip install --upgrade pip
git push origin && git push --tags origin
$(MAKE) clean
pip install --upgrade pip
pip install --quiet twine wheel
python setup.py sdist bdist_wheel
twine upload dist/*
Expand Down
13 changes: 8 additions & 5 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,30 @@ url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]
PyYAML = ">=5.4"
coveralls = "*"
eliot-tree = "*"
ipykernel = "*"
ipython = ">=7.16.3"
pylint = "*"
pytest = ">=4.4"
pytest-cov = ">=2.6"
pytest-subtests = "*"
PyYAML = "*"
tox = "*"
pytest-mock = "*"
pytest-subtests = "*"
requests-mock = "*"
tox = "*"

[packages]
PyYAML = ">=5.4"
blessings = "*"
codepost = {path = ".", editable = true}
colorama = "*"
eliot = "*"
py = ">=1.10.0"
pygments = ">=2.7.4"
python-forge = "*"
PyYAML = "*"
requests = "*"
six = "*"
codepost = {path = ".",editable = true}
typing = "*"

[requires]
Expand Down
Loading

0 comments on commit 86dc1e5

Please sign in to comment.