Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
*.swp
build
dist
lunardate.egg-info/PKG-INFO
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ pip install lunardate

## News

* 0.3.0: drop python 2, add typing hints, rename identifiers to follow PEP 8
* 0.2.2: add LunarDate.leapMonthForYear; fix bug in year 1899
* 0.2.1: fix bug in year 1956
* 0.2.0: extend year to 2099, thanks to @FuGangqiang
Expand Down
132 changes: 0 additions & 132 deletions lunardate.egg-info/PKG-INFO

This file was deleted.

2 changes: 1 addition & 1 deletion lunardate.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
import warnings
from typing import ClassVar, Iterator, Optional, Union, overload

__version__ = "0.2.2"
__version__ = "0.3.0"
__all__ = ['LunarDate']

class LunarDate:
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
author = 'LI Daobing',
author_email = 'lidaobing@gmail.com',
url = 'https://github.com/lidaobing/python-lunardate',
license = 'GPLv3',
license = 'GPL-3.0-or-later',
python_requires='>=3.7',
classifiers = [
'Development Status :: 4 - Beta',
Expand All @@ -22,7 +22,6 @@
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules'
]
Expand Down
Loading