Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mar10 committed Jul 30, 2022
1 parent b51035c commit eef8e22
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
## 4.0.2 / Unreleased

- #246 Add dir_browser/htdocs folder to sdist (.tar.gz)
- #248 Provider does not support set_last_modified" error
- #251 Fix removing locks in recursive mode
- #255 Fix ERROR: Invalid requirement: 'cheroot~=8'
- #260 Fix Case-Sensitivity issue on MOVE/COPY actions through Windows DAV
- #261 Use the required dry_run keyword argument when calling set_last_modified

## 4.0.1 / 2022-01-11

Expand Down
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ tox~=3.13
twine~=1.11
WebTest~=2.0
wheel
yabs>=0.5
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; universal = 1

[metadata]
name = WsgiDAV
# name = WsgiDAV # GitHub dependants needs it in setup.py?
version = attr: wsgidav.__version__
author = Martin Wendt
author_email = wsgidav@wwwendt.de
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
from setuptools import setup

setup(
name="yabs", # GitHub dependants needs it here?
# See setup.cfg
)
3 changes: 3 additions & 0 deletions setup_bdist_msi.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#!/usr/bin/env python

# NOTE: isort must not chage this import order:
# isort: skip_file

import os
import re
import sys
Expand Down
8 changes: 6 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
basepython = python3.9
envlist =
check
lint
; flake8
# mypy
py310 # EOL 2026-10-04
py39 # EOL 2025-10-05
Expand Down Expand Up @@ -66,7 +66,7 @@ changedir = {toxinidir}
commands =
mypy wsgidav tests

[testenv:lint]
[testenv:flake8]
skip_install = true
deps =
# Required by flake8-bandit
Expand Down Expand Up @@ -110,8 +110,10 @@ skip_install = true
deps =
black ~=22.1
isort
{[testenv:flake8]deps}
changedir = {toxinidir}
commands =
{[testenv:flake8]commands}
isort --check-only --profile black wsgidav tests setup.py
black --check --diff wsgidav tests setup.py

Expand All @@ -122,10 +124,12 @@ description = Reformat python code using Black and isort
deps =
black ~=22.1
isort
{[testenv:flake8]deps}
changedir = {toxinidir}
commands =
isort --profile black wsgidav tests setup.py {posargs}
black wsgidav tests setup.py
{[testenv:flake8]commands}


[testenv:docs]
Expand Down

0 comments on commit eef8e22

Please sign in to comment.