Skip to content

Commit

Permalink
Update links for new home at tox-dev (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Sep 27, 2021
1 parent 5225d4f commit 7936107
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ with lock:
**Don't use** a *FileLock* to lock the file you want to write to, instead create
a separate *.lock* file as shown above.

![animated example](https://raw.githubusercontent.com/benediktschmitt/py-filelock/master/example/example.gif)
![animated example](https://raw.githubusercontent.com/tox-dev/py-filelock/main/example/example.gif)


## Similar libraries
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ GitHub
------

This module is hosted on
`GitHub <https://github.com/benediktschmitt/py-filelock>`_. If you have any
`GitHub <https://github.com/tox-dev/py-filelock>`_. If you have any
questions or suggestions, don't hesitate to open a new issue :).
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ classifiers =
Topic :: Internet
Topic :: Software Development :: Libraries
Topic :: System
download_url = https://github.com/benediktschmitt/tox-dev/archive/main.zip
download_url = https://github.com/tox-dev/py-filelock/archive/main.zip
project_urls =
Source=https://github.com/pypa/virtualenv
Tracker=https://github.com/pypa/virtualenv/issues
Source=https://github.com/tox-dev/py-filelock
Tracker=https://github.com/tox-dev/py-filelock/issues

[options]
packages = find:
Expand Down
2 changes: 1 addition & 1 deletion src/filelock/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ def _acquire(self):
def _release(self):
# Do not remove the lockfile:
#
# https://github.com/benediktschmitt/py-filelock/issues/31
# https://github.com/tox-dev/py-filelock/issues/31
# https://stackoverflow.com/questions/17708885/flock-removing-locked-file-without-race-condition
fd = self._lock_file_fd
self._lock_file_fd = None
Expand Down

0 comments on commit 7936107

Please sign in to comment.