Skip to content

Commit

Permalink
Fix package name
Browse files Browse the repository at this point in the history
  • Loading branch information
mar10 committed Jul 31, 2022
1 parent 7b368a6 commit d5d7b00
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/source/development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ We need `Python 2.7 <https://www.python.org/downloads/>`_,
`Python 3.4+ <https://www.python.org/downloads/>`_,
and `pip <https://pip.pypa.io/en/stable/installing/#do-i-need-to-install-pip>`_ on our system.

If you want to run tests on *all supported* platforms, install Python 2.7, 3.4,
3.5, and 3.6.
If you want to run tests on *all supported* platforms, install Python 3.7, 3.8,
3.9, and 3.10.

On Linux/OS X, we recommend to use `pipenv <https://github.com/kennethreitz/pipenv>`_
to activate a virtual environment::
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
; Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
from setuptools import setup

setup(
name="yabs", # GitHub dependants needs it here?
name="WsgiDAV", # GitHub dependants needs it here?
# See setup.cfg
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
basepython = python3.9
envlist =
check
; flake8
# mypy
py310 # EOL 2026-10-04
py39 # EOL 2025-10-05
Expand Down Expand Up @@ -66,6 +65,7 @@ changedir = {toxinidir}
commands =
mypy wsgidav tests


[testenv:flake8]
skip_install = true
deps =
Expand Down

0 comments on commit d5d7b00

Please sign in to comment.