-
-
Notifications
You must be signed in to change notification settings - Fork 39
poetry: Switch from using pipenv to poetry #81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -131,3 +131,6 @@ cython_debug/ | |
# VS Code | ||
.history | ||
.vscode | ||
|
||
#pyenv | ||
.python-version |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,38 @@ | ||
.DEFAULT_GOAL := help | ||
.PHONY: help build test | ||
|
||
build: ## Build an application | ||
@pipenv run python -m build --no-isolation | ||
PYPI_PASSWORD := $(shell echo ${PYPI_PASSWORD}) | ||
PYPI_TEST_PASSWORD := $(shell echo ${PYPI_TEST_PASSWORD}) | ||
|
||
publish-test: ## Upload package to test PyPI | ||
@pipenv run twine upload --repository testpypi dist/* | ||
|
||
publish: build ## Upload package to PyPI | ||
@pipenv run twine upload dist/* | ||
@make clean | ||
build: ## Build an application | ||
@poetry build | ||
|
||
configure_pypi_publishing: ## Configure publishing to PyPI (for publish-test) | ||
@if [ -z "${PYPI_PASSWORD}" ] ; then echo "you need to export PYPI_PASSWORD before running this command" ; false ; fi | ||
@if [ -z "${PYPI_TEST_PASSWORD}" ] ; then echo "you need to export PYPI_TEST_PASSWORD before running this command" ; false ; fi | ||
@poetry config repositories.test-pypi https://test.pypi.org/legacy/ | ||
@poetry config pypi-token.test-pypi $(PYPI_TEST_TOKEN) | ||
@poetry config pypi-token.pypi $(PYPI_TOKEN) | ||
|
||
install: build ## Install application to Pip environment | ||
@pipenv run python -m pip install | ||
publish-test: ## Upload package to test PyPI | ||
@poetry publish -r test-pypi | ||
|
||
install-dev: ## Install application to Pip development environment | ||
manchenkoff marked this conversation as resolved.
Show resolved
Hide resolved
|
||
@pipenv run python -m pip install -e | ||
@make clean | ||
install: build ## Install application to Poetry environment | ||
@poetry install | ||
|
||
clean: ## Remove build files | ||
@rm -Rf build/ dist/ *.egg-info .pytest_cache/ .mypy_cache/ .pytype/ .eggs/ src/*.egg-info | ||
@echo "Temporary files were clear" | ||
|
||
test: ## Run code tests | ||
@pipenv run python -m pytest -q | ||
|
||
sync: ## Sync with Pipfile packages list | ||
@pipenv sync | ||
@poetry run pytest | ||
|
||
lint: ## Run code linters | ||
@echo "Run code linters..." | ||
@pipenv run mypy ./src | ||
@poetry run mypy ./src | ||
|
||
help: ## Show this message | ||
@echo "Application management" | ||
@echo | ||
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' | ||
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' |
This file was deleted.
This file was deleted.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
[tool.poetry] | ||
name = "openapi3-parser" | ||
version = "1.1.16" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. there might be slight issue with this version, previously it was set in There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How is the version being bumped now? Is that part of Should for sure only have one source of truth. If automated, could replace with: https://py-pkgs.org/07-releasing-versioning.html#automatic-version-bumping There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For now, it's a manual thing, I have planned to automate it in the future (#33) and might follow your suggestion. Currently, the publishing process uses the version defined in setup.py, which comes from the init file. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah, poetry requires a version so I'll circle back when I can convert setup.py |
||
description = "OpenAPI 3 parser to use a specification inside of the code in your projects" | ||
authors = ["Artem Manchenkov <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
packages = [{ include = "openapi_parser", from = "src" }] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.9" | ||
prance = ">=0.20.2" | ||
openapi-spec-validator = "==0.6.0" | ||
|
||
|
||
[tool.poetry.group.dev.dependencies] | ||
wheel = ">=0.35.1" | ||
mypy = ">=0.800" | ||
pytest = ">=6.2.2" | ||
build = "*" | ||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
|
||
[tool.pytest.ini_options] | ||
testpaths = [ | ||
"tests", | ||
] | ||
pythonpath = [ | ||
"./src" | ||
] |
Uh oh!
There was an error while loading. Please reload this page.