Skip to content

Commit 69fe7cc

Browse files
committed
Merge branch 'version-2.9'. Fixes #125.
2 parents 4198433 + e60f0e6 commit 69fe7cc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyfakefs/fake_filesystem.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898

9999
__pychecker__ = 'no-reimportself'
100100

101-
__version__ = '2.8'
101+
__version__ = '2.9'
102102

103103
PERM_READ = 0o400 # Read permission bit.
104104
PERM_WRITE = 0o200 # Write permission bit.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
REQUIRES = ['mox3']
2727
DESCRIPTION = 'pyfakefs implements a fake file system that mocks the Python file system modules.'
2828

29-
URL = "https://github.com/jmcgeheeiv/pyfakefs"
29+
URL = "http://pyfakefs.org"
3030

3131
readme = os.path.join(os.path.dirname(__file__), 'README.md')
3232
LONG_DESCRIPTION = open(readme).read()
@@ -76,7 +76,7 @@
7676
work with pyfakefs.''', # LONG_DESCRIPTION,
7777
keywords=KEYWORDS,
7878
url=URL,
79-
pac=CLASSIFIERS,
79+
classifiers=CLASSIFIERS,
8080
packages=[
8181
'pyfakefs'
8282
]

0 commit comments

Comments
 (0)