Skip to content

Commit efd6fe9

Browse files
committed
Version 2.0.0
1 parent b8ecf2d commit efd6fe9

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

CONTRIBUTING.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,18 @@ so we will change to this directory when `workon` is called.
2626
For example Python 3.4
2727
```
2828
$ mkvirtualenv wsgidav3_py34 -p /Library/Frameworks/Python.framework/Versions/3.4/bin/python3.4 -a .
29+
$ workon wsgidav3_py34
2930
```
3031

31-
The new environment should now exist and can be activated.
32+
or using Python's builtin `venv` instead of `virtualenvwrapper`:
33+
```
34+
> py -3.4 -m venv c:\env\wsgidav3_py34
35+
> c:\env\wsgidav3_py34\Scripts\activate.bat
36+
```
37+
38+
The new environment exists and is activated.
3239
Now install the development dependencies into that environemt:
3340
```
34-
$ workon wsgidav3_py34
3541
(wsgidav3_py34) $ pip install -r requirements-dev.txt
3642
```
3743

wsgidav/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
http://peak.telecommunity.com/DevCenter/setuptools#tagging-and-daily-build-or-snapshot-releases
66
Example "1.2.0b1", "1.2.0pre1" or "1.2.0"
77
"""
8-
__version__ = "2.0.0b1"
8+
__version__ = "2.0.0"

0 commit comments

Comments
 (0)