Skip to content

Commit 397ee12

Browse files
authored
Merge pull request #106 from dh-tech/hotfix/0.3.1
Hotfix v0.3.1
2 parents 94934ec + 0962856 commit 397ee12

4 files changed

Lines changed: 14 additions & 6 deletions

File tree

.readthedocs.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,14 @@ version: 2
55
build:
66
os: "ubuntu-20.04"
77
tools:
8-
python: "3.9"
8+
python: "3.12"
99

1010
sphinx:
1111
configuration: docs/conf.py
12-
12+
1313
python:
1414
install:
15-
- requirements: docs/requirements.txt
15+
- method: pip
16+
path: .
17+
extra_requirements:
18+
- docs

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## 0.3.1
4+
5+
Update readthedocs config for current installation
6+
37
## 0.3
48

59
- Updated to use numpy `datetime64` to support a greater range of years beyond the 4-digit years supported by python's builtin `datetime.date`

docs/conf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
# import sys
1515
# sys.path.insert(0, os.path.abspath('.'))
1616

17+
import undate
1718

1819
# -- Project information -----------------------------------------------------
1920

@@ -22,7 +23,7 @@
2223
author = "DHtech Community"
2324

2425
# The full version, including alpha/beta/rc tags
25-
release = "0.0.1.dev"
26+
release = undate.__version__
2627

2728
master_doc = "index"
2829

src/undate/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
__version__ = "0.3.0"
1+
__version__ = "0.3.1"
22

33
from undate.date import DatePrecision
44
from undate.undate import Undate, UndateInterval
55

6-
__all__ = ["Undate", "UndateInterval", "DatePrecision"]
6+
__all__ = ["Undate", "UndateInterval", "DatePrecision", "__version__"]

0 commit comments

Comments
 (0)