Skip to content

Commit

Permalink
fix(pkg): constrain questionary version to <1.8.0
Browse files Browse the repository at this point in the history
see tmbo/questionary#88 for details

fixes #184
  • Loading branch information
BradenM committed Nov 17, 2020
1 parent 525b4b0 commit 2bec6c6
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 45 deletions.
82 changes: 40 additions & 42 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -98,5 +98,5 @@ from = {format = "poetry", path="pyproject.toml"}
to = {format = "setuppy", path="setup.py"}

[build-system]
requires = ["poetry>=1.0.0"]
requires = ["poetry>=1.0.0", "setuptools!=50.0", "wheel"]
build-backend = "poetry.masonry.api"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@
packages=['micropy', 'micropy.config', 'micropy.data', 'micropy.packages', 'micropy.project', 'micropy.project.modules', 'micropy.stubs', 'micropy.utils'],
package_dir={"": "."},
package_data={"micropy": ["lib/stubber/*.conf", "lib/stubber/*.md", "lib/stubber/.vscode/*.json", "lib/stubber/patches/*.patch", "lib/stubber/runOnPc/*.cfg", "lib/stubber/runOnPc/*.cmd"], "micropy.data": ["*.json", "schemas/*.json"], "micropy.project": ["template/*.conf", "template/.vscode/*.json"]},
install_requires=['boltons==19.*,>=19.3.0', 'cachier==1.*,>=1.2.0', 'click==7.*,>=7.0.0', 'colorama==0.*,>=0.4.3; sys_platform == "win32"', 'dpath<2.0,>=1.4', 'gitpython==3.*,>=3.1.7', 'jinja2==2.*,>=2.10.0', 'jsonschema==3.2.0', 'packaging<21.0,>=19.2', 'questionary==1.*,>=1.4.0', 'requests==2.*,>=2.22.0', 'requirements-parser==0.*,>=0.2.0', 'tqdm==4.*,>=4.39.0'],
extras_require={"create_stubs": ["pyminifier==2.*,>=2.1.0", "rshell==0.*,>=0.0.26"], "dev": ["autoflake==1.*,>=1.4.0", "autopep8==1.*,>=1.5.0", "bump2version==0.*,>=0.5.11", "codacy-coverage==1.*,>=1.3.0", "coveralls==2.*,>=2.1.0", "doc8==0.*,>=0.8.0", "docformatter==1.*,>=1.3.0", "flake8==3.*,>=3.8.0", "flaky==3.*,>=3.7.0", "isort==4.*,>=4.3.0", "mypy==0.*,>=0.781.0", "pylint==2.*,>=2.5.0", "pytest==5.*,>=5.4.0", "pytest-cov==2.*,>=2.10.0", "pytest-datadir==1.*,>=1.3.0", "pytest-forked==1.*,>=1.3.0", "pytest-mock==1.*,>=1.12.0", "pytest-randomly==3.*,>=3.4.1", "pytest-runner==5.*,>=5.2.0", "pytest-testmon==1.*,>=1.0.0", "pytest-watch==4.*,>=4.2.0", "pytest-xdist==1.*,>=1.30.0", "requests-mock==1.*,>=1.8.0", "rope==0.*,>=0.14.0", "tox==3.*,>=3.16.0", "tox-gh-actions==0.*,>=0.3.0"], "docs": ["recommonmark==0.*,>=0.6.0", "sphinx==2.*,>=2.2.0", "sphinx-autodoc-typehints==1.*,>=1.10.3", "sphinx-click==2.*,>=2.3.0", "sphinx-rtd-theme==0.*,>=0.4.3"]},
install_requires=['boltons==19.*,>=19.3.0', 'cachier==1.*,>=1.2.0', 'click==7.*,>=7.0.0', 'colorama==0.*,>=0.4.3; sys_platform == "win32"', 'dpath<2.0,>=1.4', 'gitpython==3.*,>=3.1.7', 'jinja2==2.*,>=2.10.0', 'jsonschema==3.2.0', 'packaging<21.0,>=19.2', 'questionary<1.8,>=1.6', 'requests==2.*,>=2.22.0', 'requirements-parser==0.*,>=0.2.0', 'tqdm==4.*,>=4.39.0'],
extras_require={"create_stubs": ["pyminifier==2.*,>=2.1.0", "rshell==0.*,>=0.0.26"], "dev": ["autoflake==1.*,>=1.4.0", "autopep8==1.*,>=1.5.0", "bump2version==0.*,>=0.5.11", "codacy-coverage==1.*,>=1.3.0", "coveralls==2.*,>=2.1.0", "doc8==0.*,>=0.8.0", "docformatter==1.*,>=1.3.0", "flake8==3.*,>=3.8.0", "flaky==3.*,>=3.7.0", "isort==5.*,>=5.6.0", "mypy==0.*,>=0.790.0", "pylint==2.*,>=2.5.0", "pytest==6.*,>=6.1.0", "pytest-cov==2.*,>=2.10.0", "pytest-datadir==1.*,>=1.3.0", "pytest-forked==1.*,>=1.3.0", "pytest-mock==3.*,>=3.3.0", "pytest-randomly==3.*,>=3.4.1", "pytest-runner==5.*,>=5.2.0", "pytest-testmon==1.*,>=1.0.0", "pytest-watch==4.*,>=4.2.0", "pytest-xdist==1.*,>=1.30.0", "requests-mock==1.*,>=1.8.0", "rope==0.*,>=0.18.0", "tox==3.*,>=3.16.0", "tox-gh-actions==0.*,>=0.3.0"], "docs": ["recommonmark==0.*,>=0.6.0", "sphinx==2.*,>=2.2.0", "sphinx-autodoc-typehints==1.*,>=1.10.3", "sphinx-click==2.*,>=2.3.0", "sphinx-rtd-theme==0.*,>=0.4.3"]},
)

0 comments on commit 2bec6c6

Please sign in to comment.