-
-
Notifications
You must be signed in to change notification settings - Fork 298
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
WIP: Remove conda files #1561
WIP: Remove conda files #1561
Conversation
Pull Request Test Coverage Report for Build 7657069746
💛 - Coveralls |
…o remove_conda_files
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removing conda env files makes sense as it's currently becoming harder to support an environment with both conda and pip dependencies.
I left a couple of comments to check.
PS: I think we can safely remove the constraint on typing_extensions in requirements.txt, too.
PS 2: after further investigation, it seems that versions of typing-extensions <4.6.0
do not work well with dill. It seems reasonable to add a >=4.6.0
constraint.
@@ -21,6 +21,9 @@ on: | |||
paths: | |||
- 'docker/nightly/**' | |||
- '.github/workflows/docker-nightly-release.yml' | |||
- 'requirements.txt' | |||
- 'setup.py' | |||
- 'extra_dependencies.py' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's extra_dependencies.txt
@@ -17,6 +17,9 @@ on: | |||
- master | |||
paths: | |||
- '.github/workflows/environment-update.yml' | |||
- 'requirements.txt' | |||
- 'setup.py' | |||
- 'extra_dependencies.py' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's extra_dependencies.txt
@@ -26,6 +26,8 @@ on: | |||
paths: | |||
- '**.py' | |||
- '.github/workflows/unit-test.yml' | |||
- 'requirements.txt' | |||
- 'extra_dependencies.py' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's extra_dependencies.txt
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that the correct file name is `extra_dependencies.txt'
No description provided.