-
Notifications
You must be signed in to change notification settings - Fork 479
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
Sep 5, 2016
1 parent
2787ed1
commit 442f000
Showing
5 changed files
with
33 additions
and
9 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
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
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
# Author: ryanss <[email protected]> | ||
# Website: https://github.com/ryanss/holidays.py | ||
# License: MIT (see LICENSE file) | ||
# Version: 0.4.1 (January 5, 2016) | ||
# Version: 0.5 (September 5, 2016) | ||
|
||
|
||
from datetime import date, datetime | ||
|
@@ -20,7 +20,7 @@ | |
import six | ||
|
||
|
||
__version__ = '0.4.1' | ||
__version__ = '0.5' | ||
|
||
|
||
MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY = range(7) | ||
|
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
# Author: ryanss <[email protected]> | ||
# Website: https://github.com/ryanss/holidays.py | ||
# License: MIT (see LICENSE file) | ||
# Version: 0.4.1 (January 5, 2016) | ||
# Version: 0.5 (September 5, 2016) | ||
|
||
|
||
import codecs | ||
|
@@ -19,7 +19,7 @@ | |
|
||
setup( | ||
name='holidays', | ||
version='0.4.1', | ||
version='0.5', | ||
author='ryanss', | ||
author_email='[email protected]', | ||
url='https://github.com/ryanss/holidays.py', | ||
|
@@ -44,6 +44,7 @@ | |
'Programming Language :: Python :: 3.2', | ||
'Programming Language :: Python :: 3.3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: Implementation :: PyPy', | ||
'Topic :: Office/Business :: Scheduling', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
|
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
# Author: ryanss <[email protected]> | ||
# Website: https://github.com/ryanss/holidays.py | ||
# License: MIT (see LICENSE file) | ||
# Version: 0.4.1 (January 5, 2016) | ||
# Version: 0.5 (September 5, 2016) | ||
|
||
from itertools import product | ||
from datetime import date, datetime | ||
|