Skip to content

Commit 29428d9

Browse files
authored
RLS: setup for v0.8.2 (#779)
* RLS: setup for v0.8.2 * automate copyright year information * update metadata for python versions * ensure datetime is available for docs * fix import syntax for datetime object
1 parent 226413d commit 29428d9

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

docs/source/conf.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
import sys
1616
import os
1717
import pip
18+
from datetime import datetime
1819

1920
try:
2021
from mock import Mock as MagicMock
@@ -101,7 +102,8 @@ def install(package):
101102

102103
# General information about the project.
103104
project = u'QuantEcon'
104-
copyright = u'2014, QuantEcon Developer Team'
105+
year = datetime.now().year
106+
copyright = f'2008-{year}, QuantEcon Developer Team'
105107

106108
# The version info for the project you're documenting, acts as replacement for
107109
# |version| and |release|, also used in various other places throughout the

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ classifiers = [
1111
'Intended Audience :: Science/Research',
1212
'Programming Language :: Python',
1313
'Programming Language :: Python :: 3',
14-
'Programming Language :: Python :: 3.5',
14+
'Programming Language :: Python :: 3.11',
15+
'Programming Language :: Python :: 3.12',
16+
'Programming Language :: Python :: 3.13',
1517
'Topic :: Scientific/Engineering',
1618
]
1719
keywords = [

quantecon/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Import the main names to top level.
44
"""
55

6-
__version__ = '0.8.1'
6+
__version__ = '0.8.2'
77

88
try:
99
import numba

0 commit comments

Comments
 (0)