-
Notifications
You must be signed in to change notification settings - Fork 467
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ryanss
committed
Aug 28, 2014
1 parent
fe877d6
commit 7906f34
Showing
4 changed files
with
31 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Version 0.2 | ||
=========== | ||
|
||
Released August 28, 2014 | ||
|
||
- Each country is now initialized with its own individual class (see examples | ||
in README). This is a backward incompatible API change. | ||
- Adds support for Python 3.2, 3.3, 3.4, and PyPy | ||
- All code now conforms to PEP8 standards | ||
|
||
|
||
Version 0.1 | ||
=========== | ||
|
||
Released August 1, 2014 | ||
|
||
- Initial release | ||
- Support for Python 2.5, 2.6, 2.7 | ||
- Includes federal and provincial holidays for Canada, United States |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
# holidays.py | ||
# ----------- | ||
# A fast, efficient Python library for generating country-specific lists of | ||
# holidays on the fly which aims to make determining whether a specific date | ||
# is a hoiday as fast and flexible as possible. | ||
# A fast, efficient Python library for generating country-specific sets of | ||
# holidays on the fly. It aims to make determining whether a specific date is | ||
# a holiday as fast and flexible as possible. | ||
# | ||
# Author: ryanss <[email protected]> | ||
# Website: https://github.com/ryanss/holidays.py | ||
# License: MIT (see LICENSE file) | ||
|
||
__version__ = '0.1-dev' | ||
__version__ = '0.2' | ||
|
||
|
||
from datetime import date, datetime | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# holidays.py | ||
# ----------- | ||
# A fast, efficient Python library for generating country-specific lists of | ||
# holidays on the fly which aims to make determining whether a specific date | ||
# is a hoiday as fast and flexible as possible. | ||
# A fast, efficient Python library for generating country-specific sets of | ||
# holidays on the fly. It aims to make determining whether a specific date is | ||
# a holiday as fast and flexible as possible. | ||
# | ||
# Author: ryanss <[email protected]> | ||
# Website: https://github.com/ryanss/holidays.py | ||
|
@@ -25,12 +25,12 @@ | |
url='https://github.com/ryanss/holidays.py', | ||
license='MIT', | ||
py_modules=['holidays'], | ||
description='Generates country-specific lists of statutory holidays', | ||
description='Generates country-specific sets of holidays on the fly', | ||
long_description=open('README.rst').read(), | ||
install_requires=['python-dateutil'], | ||
platforms='any', | ||
classifiers=[ | ||
'Development Status :: 2 - Pre-Alpha', | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: OS Independent', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# holidays.py | ||
# ----------- | ||
# A fast, efficient Python library for generating country-specific lists of | ||
# holidays on the fly which aims to make determining whether a specific date | ||
# is a hoiday as fast and flexible as possible. | ||
# A fast, efficient Python library for generating country-specific sets of | ||
# holidays on the fly. It aims to make determining whether a specific date is | ||
# a holiday as fast and flexible as possible. | ||
# | ||
# Author: ryanss <[email protected]> | ||
# Website: https://github.com/ryanss/holidays.py | ||
|