Skip to content

Commit

Permalink
Movement of holidays accompanying Tokyo Olympic 2021
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-tessier committed Dec 2, 2020
1 parent ba6c95e commit 7198a3e
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 29 deletions.
34 changes: 20 additions & 14 deletions holiday_jp/holidays.py
Original file line number Diff line number Diff line change
Expand Up @@ -1561,7 +1561,7 @@ class HolidayDataset(object):
"week_en": "Saturday"
},
"1989-02-24": {
"name": "昭和天皇の大喪の礼",
"name": "大喪の礼",
"name_en": "The Funeral Ceremony of Emperor Showa.",
"week": "金",
"week_en": "Friday"
Expand Down Expand Up @@ -1981,7 +1981,7 @@ class HolidayDataset(object):
"week_en": "Wednesday"
},
"1993-06-09": {
"name": "皇太子徳仁親王の結婚の儀",
"name": "結婚の儀",
"name_en": "The Rite of Wedding of HIH Crown Prince Naruhito",
"week": "水",
"week_en": "Wednesday"
Expand Down Expand Up @@ -4830,17 +4830,29 @@ class HolidayDataset(object):
"week": "水",
"week_en": "Wednesday"
},
"2021-07-19": {
"2021-07-22": {
"name": "海の日",
"name_en": "Marine Day",
"week": "月",
"week_en": "Monday"
"week": "木",
"week_en": "Thursday"
},
"2021-07-23": {
"name": "スポーツの日",
"name_en": "Health and Sports Day",
"week": "金",
"week_en": "Friday"
},
"2021-08-11": {
"2021-08-08": {
"name": "山の日",
"name_en": "Mountain Day",
"week": "水",
"week_en": "Wednesday"
"week": "日",
"week_en": "Sunday"
},
"2021-08-09": {
"name": "山の日 振替休日",
"name_en": "Holiday in lieu",
"week": "月",
"week_en": "Monday"
},
"2021-09-20": {
"name": "敬老の日",
Expand All @@ -4854,12 +4866,6 @@ class HolidayDataset(object):
"week": "木",
"week_en": "Thursday"
},
"2021-10-11": {
"name": "スポーツの日",
"name_en": "Health and Sports Day",
"week": "月",
"week_en": "Monday"
},
"2021-11-03": {
"name": "文化の日",
"name_en": "National Culture Day",
Expand Down
33 changes: 18 additions & 15 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
from setuptools import setup, find_packages

setup(name='holiday_jp',
version='19.10.14',
url='https://github.com/LUXEYS/holiday_jp-python',
license='MIT',
author='Luxeys',
author_email='[email protected]',
description='Japanese holiday for Python',
long_description_content_type="text/markdown",
packages=find_packages(),
long_description=open('README.md').read(),
zip_safe=False,
install_requires=[
setup(
name='holiday_jp',
version='20.12.02',
url='https://github.com/LUXEYS/holiday_jp-python',
license='MIT',
author='Luxeys',
author_email='[email protected]',
description='Japanese holiday for Python',
long_description_content_type="text/markdown",
packages=find_packages(),
long_description=open('README.md').read(),
zip_safe=False,
install_requires=[
"python-dateutil==2.8.1",
],
classifiers=[
],
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
Expand All @@ -23,4 +24,6 @@
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
])
"Programming Language :: Python :: 3.8",
]
)

0 comments on commit 7198a3e

Please sign in to comment.