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

fix to make setup.cfg work with setuptools v67.0.0 #5333

Merged
merged 3 commits into from
Jan 30, 2023
Merged
Show file tree
Hide file tree
Changes from all 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: 2 additions & 2 deletions conda-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ dependencies:
- psutil >=5.6.0
- python
- pyzmq >=22,<23
- setuptools >=49
- setuptools >=49, <67
- urwid >=2,<3
# Add # [py<3.11] for tomli once Python 3.11 Released
- tomli >=2.0.0
- tomli >=2

# optional dependencies
#- empy >=3.3,<3.4
Expand Down
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ install_requires =
protobuf>=4.21.2,<4.22.0
psutil>=5.6.0
pyzmq==22.*
setuptools>=49
# https://github.com/pypa/setuptools/issues/3802
setuptools>=49, <67
wxtim marked this conversation as resolved.
Show resolved Hide resolved
oliver-sanders marked this conversation as resolved.
Show resolved Hide resolved
urwid==2.*
# unpinned transient dependencies used for type checking
rx
promise
# Once Python 3.11 released -'; python_version<"3.11"'
tomli>=2.*
tomli>=2; python_version < "3.11"

[options.packages.find]
include = cylc*
Expand Down