Skip to content
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

pin version of empy to <4 #603

Merged
merged 5 commits into from
Nov 30, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ python_requires = >=3.6
install_requires =
coloredlogs; sys_platform == 'win32'
distlib
EmPy
# pining empy to <4 since the release of empy 4 breaks colcon
# see https://github.com/colcon/colcon-core/issues/602
EmPy<4
importlib-metadata; python_version < "3.8"
packaging
# the pytest dependency and its extensions are provided for convenience
Expand Down
2 changes: 1 addition & 1 deletion stdeb.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[colcon-core]
No-Python2:
Depends3: python3-distlib, python3-empy, python3-packaging, python3-pytest, python3-setuptools, python3 (>= 3.8) | python3-importlib-metadata
Depends3: python3-distlib, python3-empy (<4), python3-pytest, python3-setuptools, python3 (>= 3.8) | python3-importlib-metadata
claraberendsen marked this conversation as resolved.
Show resolved Hide resolved
Recommends3: python3-pytest-cov
Suggests3: python3-pytest-repeat, python3-pytest-rerunfailures
Suite: focal jammy bullseye bookworm
Expand Down