3 new commits in tox:

https://bitbucket.org/hpk42/tox/commits/9e2e759d7f1e/
Changeset:   9e2e759d7f1e
Branch:      bug/period_pkg_name
User:        mattjeffery
Date:        2013-12-09 13:17:58
Summary:     Created new branch bug/period_pkg_name
Affected #:  0 files



https://bitbucket.org/hpk42/tox/commits/b1292f426a70/
Changeset:   b1292f426a70
Branch:      bug/period_pkg_name
User:        mattjeffery
Date:        2013-12-09 13:20:04
Summary:     Correctly determine the package version if the package file name 
contains a period before the version number.
Affected #:  1 file

diff -r 9e2e759d7f1e2ff555bc8fd2150e29761d6eab86 -r 
b1292f426a70e89c764def0bc9dbe76dedefd6b1 tox/_cmdline.py
--- a/tox/_cmdline.py
+++ b/tox/_cmdline.py
@@ -557,7 +557,7 @@
             return candidates[0]
 
 
-_rex_getversion = py.std.re.compile("[\w_\-\+]+-(.*)(\.zip|\.tar.gz)")
+_rex_getversion = py.std.re.compile("[\w_\-\+\.]+-(.*)(\.zip|\.tar.gz)")
 def getversion(basename):
     m = _rex_getversion.match(basename)
     if m is None:


https://bitbucket.org/hpk42/tox/commits/90f72914b4fe/
Changeset:   90f72914b4fe
User:        hpk42
Date:        2013-12-09 14:02:31
Summary:     Merged in mattjeffery/tox/bug/period_pkg_name (pull request #82)

Correctly determine the package version if the package file name contains a 
period before the version number.
Affected #:  1 file

diff -r 7d8976da0b000e0d36ef61545c0f779bb9fe4c09 -r 
90f72914b4fed54a33cb1784ca3b8f9876c8cabe tox/_cmdline.py
--- a/tox/_cmdline.py
+++ b/tox/_cmdline.py
@@ -557,7 +557,7 @@
             return candidates[0]
 
 
-_rex_getversion = py.std.re.compile("[\w_\-\+]+-(.*)(\.zip|\.tar.gz)")
+_rex_getversion = py.std.re.compile("[\w_\-\+\.]+-(.*)(\.zip|\.tar.gz)")
 def getversion(basename):
     m = _rex_getversion.match(basename)
     if m is None:

Repository URL: https://bitbucket.org/hpk42/tox/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
_______________________________________________
pytest-commit mailing list
pytest-commit@python.org
https://mail.python.org/mailman/listinfo/pytest-commit

Reply via email to