Skip to content

Commit 9e896ec

Browse files
author
Maurizio Montel
committed
Updated all ryanss refs to dr.p
1 parent 07aaebd commit 9e896ec

File tree

7 files changed

+19
-12
lines changed

7 files changed

+19
-12
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# https://travis-ci.org/ryanss/python-holidays
1+
# https://travis-ci.org/dr-prodigy/python-holidays
22

33
language: python
44

CHANGES

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
Version 0.9.1
22
=============
33

4-
Released January 14, 2018
4+
Released January 19, 2018
55

6+
- Project moved to dr-prodigy
67
- Added tests for Irish calendar
7-
- minor fixes and refactoring
8+
- Minor fixes and refactoring
89

910

1011
Version 0.9

LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
Copyright (c) 2014-2017 <ryanssdev@icloud.com>
2+
Copyright (c) 2018 <maurizio.montel@gmail.com>
23

34
Permission is hereby granted, free of charge, to any person obtaining a copy
45
of this software and associated documentation files (the "Software"), to deal

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ France FRA **Métropole** (default), Alsace-Moselle, Guadeloup
9999
Wallis-et-Futuna
100100
Germany DE BW, BY, BE, BB, HB, HH, HE, MV, NI, NW, RP, SL, SN, ST,
101101
SH, TH
102-
Ireland None
102+
Ireland IE
103103
Isle of Man None
104104
Italy IT prov = MI, RM
105105
Japan JP None

holidays.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
# specific sets of holidays on the fly. It aims to make determining whether a
77
# specific date is a holiday as fast and flexible as possible.
88
#
9-
# Author: ryanss <ryanssdev@icloud.com>
10-
# Website: https://github.com/ryanss/python-holidays
9+
# Author: ryanss <ryanssdev@icloud.com> (c) 2014-2017
10+
# dr-prodigy <maurizio.montel@gmail.com> (c) 2018
11+
# Website: https://github.com/dr-prodigy/python-holidays
1112
# License: MIT (see LICENSE file)
1213

1314
from datetime import date, datetime

setup.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
# specific sets of holidays on the fly. It aims to make determining whether a
55
# specific date is a holiday as fast and flexible as possible.
66
#
7-
# Author: ryanss <ryanssdev@icloud.com>
8-
# Website: https://github.com/ryanss/python-holidays
7+
# Author: ryanss <ryanssdev@icloud.com> (c) 2014-2017
8+
# dr-prodigy <maurizio.montel@gmail.com> (c) 2018
9+
# Website: https://github.com/dr-prodigy/python-holidays
910
# License: MIT (see LICENSE file)
1011

1112
import codecs
@@ -29,8 +30,10 @@
2930
version=version,
3031
author='ryanss',
3132
author_email='ryanssdev@icloud.com',
32-
url='https://github.com/ryanss/python-holidays',
33-
bugtrack_url='https://github.com/ryanss/python-holidays/issues',
33+
maintainer='dr-prodigy',
34+
maintainer_email='maurizio.montel@gmail.com',
35+
url='https://github.com/dr-prodigy/python-holidays',
36+
bugtrack_url='https://github.com/dr-prodigy/python-holidays/issues',
3437
license='MIT',
3538
py_modules=['holidays'],
3639
description='Generate and work with holidays in Python',

tests.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
# specific sets of holidays on the fly. It aims to make determining whether a
77
# specific date is a holiday as fast and flexible as possible.
88
#
9-
# Author: ryanss <ryanssdev@icloud.com>
10-
# Website: https://github.com/ryanss/python-holidays
9+
# Author: ryanss <ryanssdev@icloud.com> (c) 2014-1017
10+
# dr-prodigy <maurizio.montel@gmail.com> (c) 2018
11+
# Website: https://github.com/dr-prodigy/python-holidays
1112
# License: MIT (see LICENSE file)
1213

1314
from itertools import product

0 commit comments

Comments
 (0)