Skip to content

Commit

Permalink
fix lint errors and update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
mar10 committed Apr 28, 2024
1 parent 36eec66 commit e7dbdba
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 21 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -48,3 +48,4 @@ __pycache__
/.vscode
/manifests
/.venv
/.ruff_cache
15 changes: 0 additions & 15 deletions .settings/org.eclipse.core.resources.prefs

This file was deleted.

2 changes: 1 addition & 1 deletion Pipfile
Expand Up @@ -5,7 +5,7 @@ verify_ssl = true
[dev-packages]
black = "~=24.4"
check-manifest = "*"
cx_Freeze = {version = "~=6.11", os_name = "== 'nt'"}
cx_Freeze = {version = "*", markers="sys_platform == 'win32'"}
isort = "*"
pyftpdlib = "*"
pyftpsync = {editable = true, path = "."}
Expand Down
2 changes: 1 addition & 1 deletion ftpsync/targets.py
Expand Up @@ -12,7 +12,7 @@
import threading
from posixpath import join as join_url
from posixpath import normpath as normpath_url
from urllib.parse import urlparse, unquote
from urllib.parse import unquote, urlparse

from ftpsync.metadata import DirMetadata
from ftpsync.resources import DirectoryEntry, FileEntry
Expand Down
6 changes: 3 additions & 3 deletions requirements-dev.txt
Expand Up @@ -4,13 +4,13 @@ black~=24.4
check-manifest
cx_Freeze~=7.0
pyftpdlib~=1.5
pytest-cov~=2.5
pytest~=3.1
pytest-cov~=5.0
pytest~=8.2
ruff
# recommonmark
sphinx_rtd_theme
sphinx~=1.5
tox~=2.7
tox~=4.15
twine
virtualenv
wheel
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
@@ -1,4 +1,4 @@
colorama==0.4.3
colorama==0.4.6
keyring==25.2.0
pysftp==0.2.9
PyYAML==6.0.1

0 comments on commit e7dbdba

Please sign in to comment.