Skip to content

Commit 11bd350

Browse files
authored
Bump version: 0.1.2 → 0.1.3 (#12)
1 parent 4129a5f commit 11bd350

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [0.1.3] - 2023-04-18
4+
5+
- Ensure pandas 2.0 compatibility (fix integer casting of datetimes)
6+
37
## [0.1.2] - 2020-12-02
48

59
- Try to catch NaN before passing to `datetime.utcfromtimestamp`

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.2
2+
current_version = 0.1.3
33
commit = True
44
tag = True
55

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@
3030
'Programming Language :: Python :: 3.7',
3131
'Programming Language :: Python :: 3.8',
3232
'Programming Language :: Python :: 3.9',
33+
'Programming Language :: Python :: 3.10',
34+
'Programming Language :: Python :: 3.11',
3335
],
3436
description="A fast, vectorized Python port of suncalc.js",
3537
install_requires=requirements,
@@ -44,6 +46,6 @@
4446
test_suite='tests',
4547
tests_require=test_requirements,
4648
url='https://github.com/kylebarron/suncalc-py',
47-
version='0.1.2',
49+
version='0.1.3',
4850
zip_safe=False,
4951
)

suncalc/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__author__ = """Kyle Barron"""
22
__email__ = '[email protected]'
3-
__version__ = '0.1.2'
3+
__version__ = '0.1.3'
44

55
from .suncalc import get_position, get_times

0 commit comments

Comments
 (0)