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

limit filelock to highest compatible version #2736

Closed
wants to merge 3 commits into from

Commits on Jun 12, 2024

  1. limit filelock to highest compatible version

    filelock 3.15.0 was just released and causes the following crash when used with the latest version of virtualenv
    
    ```
    Traceback (most recent call last):
      File "/root/.pyenv/versions/3.10.11/lib/python3.10/site-packages/filelock/_api.py", line 365, in __del__
        self.release(force=True)
      File "/root/.pyenv/versions/3.10.11/lib/python3.10/site-packages/virtualenv/util/lock.py", line 34, in release
        with self.thread_safe:
    AttributeError: '_CountedFileLock' object has no attribute 'thread_safe'
    ```
    
    This change avoids depending on this new incompatible version of filelock.
    emmettbutler authored Jun 12, 2024
    Configuration menu
    Copy the full SHA
    6370afc View commit details
    Browse the repository at this point in the history
  2. Update pyproject.toml

    emmettbutler authored Jun 12, 2024
    Configuration menu
    Copy the full SHA
    be602e5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d356a03 View commit details
    Browse the repository at this point in the history