Skip to content

Commit 726d2d7

Browse files
committed
Bump version to v3.0.0
1 parent 656cc45 commit 726d2d7

File tree

11 files changed

+17
-17
lines changed

11 files changed

+17
-17
lines changed

caelus/io/printer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
from . import dtypes
2323

2424
file_banner = r"""/*---------------------------------------------------------------------------*\
25-
* Caelus (http://www.caelus-cml.com)
25+
* Caelus (https://github.com/sayerhs/cpl)
2626
*
2727
* Caelus Python Library (CPL) %(version)s
2828
* Auto-generated on: %(timestamp)s

caelus/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import shlex
99
import subprocess
1010

11-
_basic_version = "v2.0.0"
11+
_basic_version = "v3.0.0"
1212

1313

1414
def git_describe():

docs/source/conf.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@
6767
# built documents.
6868
#
6969
# The short X.Y version.
70-
version = u'v2.0.0'
70+
version = u'v3.0.0'
7171
# The full version, including alpha/beta/rc tags.
72-
release = u'v2.0.0'
72+
release = u'v3.0.0'
7373

7474
# The language for content autogenerated by Sphinx. Refer to documentation
7575
# for a list of supported languages.
@@ -137,7 +137,7 @@
137137

138138
# The name for this set of Sphinx documents.
139139
# "<project> v<release> documentation" by default.
140-
#html_title = u'Caelus Python v2.0.0'
140+
#html_title = u'Caelus Python v3.0.0'
141141

142142
# A shorter title for the navigation bar. Default is the same as html_title.
143143
#html_short_title = None

etc/caelus3-dev.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
name: caelus-dev
1212

1313
dependencies:
14-
- python>=3.6
14+
- python>=3.10
1515
- pip
1616
- six
1717
- numpy

etc/caelus3.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
name: caelus
1212

1313
dependencies:
14-
- python>=3.6
14+
- python>=3.10
1515
- pip
1616
- six
1717
- numpy

etc/conda/caelus/meta.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
package:
44
name: caelus
5-
version: "v2.0.0"
5+
version: "v3.0.0"
66

77
source:
88
git_rev: main

etc/conda/conda-pkg.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ REM ### Create a Conda package for Caelus Python Library
66
REM # Run from the script directory
77
cd "%~dp0" || exit /B 1
88

9-
set caelus_version="v2.0.0"
9+
set caelus_version="v3.0.0"
1010
set script_dir="%~dp0"
1111

1212
REM Activate base/root environment for build and constructor

etc/conda/conda-pkg.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set -e
99
# Run from the script directory
1010
cd ${0%/*} || exit 1
1111

12-
caelus_version="v2.0.0"
12+
caelus_version="v3.0.0"
1313
script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
1414

1515
# Set up conda environment

etc/conda/installer/construct-template.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Custom conda installer for Caelus Python Library
22

33
name: caelus-conda
4-
version: v2.0.0
4+
version: v3.0.0
55

66
install_in_dependency_order: True
77

etc/misc/bump-versions.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ FILES=(setup.py
1414
)
1515

1616
for fname in ${FILES[@]} ; do
17-
sed -i '' -e 's/1.0.2/2.0.0/' ${fname}
17+
sed -i '' -e 's/2.0.0/3.0.0/' ${fname}
1818
done

setup.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
from setuptools import setup, find_packages
1010

11-
VERSION = "2.0.0"
11+
VERSION = "3.0.0"
1212

1313
classifiers = [
1414
"Development Status :: 5 - Production/Stable",
@@ -37,12 +37,12 @@ def parse_reqs_file(fname: str):
3737
setup(
3838
name="caelus",
3939
version=VERSION,
40-
url="http://www.caelus-cml.com",
40+
url="https://sayerhs.github.io/cpl/",
4141
license="Apache License, Version 2.0",
4242
description="Caelus Python Library",
4343
long_description=__doc__,
44-
author="Applied CCM",
45-
maintainer="Applied CCM",
44+
author="Shreyas Ananthan, Chris Sideroff",
45+
maintainer="Shreyas Ananthan, Chris Sideroff",
4646
include_package_data=True,
4747
platforms="any",
4848
classifiers=classifiers,
@@ -64,6 +64,6 @@ def parse_reqs_file(fname: str):
6464
caelus_tutorials=caelus.scripts.caelus_tutorials:main
6565
caelus_sim=caelus.scripts.caelus_sim:main
6666
""",
67-
python_requires='>=3.6',
67+
python_requires='>=3.10',
6868
install_requires=install_requires,
6969
)

0 commit comments

Comments
 (0)