File tree 8 files changed +11
-12
lines changed
8 files changed +11
-12
lines changed Original file line number Diff line number Diff line change 8
8
import shlex
9
9
import subprocess
10
10
11
- _basic_version = "v3 .0.0"
11
+ _basic_version = "v4 .0.0"
12
12
13
13
14
14
def git_describe ():
Original file line number Diff line number Diff line change 67
67
# built documents.
68
68
#
69
69
# The short X.Y version.
70
- version = u'v3 .0.0'
70
+ version = u'v4 .0.0'
71
71
# The full version, including alpha/beta/rc tags.
72
- release = u'v3 .0.0'
72
+ release = u'v4 .0.0'
73
73
74
74
# The language for content autogenerated by Sphinx. Refer to documentation
75
75
# for a list of supported languages.
137
137
138
138
# The name for this set of Sphinx documents.
139
139
# "<project> v<release> documentation" by default.
140
- #html_title = u'Caelus Python v3 .0.0'
140
+ #html_title = u'Caelus Python v4 .0.0'
141
141
142
142
# A shorter title for the navigation bar. Default is the same as html_title.
143
143
#html_short_title = None
Original file line number Diff line number Diff line change 2
2
3
3
package :
4
4
name : caelus
5
- version : " v3 .0.0"
5
+ version : " v4 .0.0"
6
6
7
7
source :
8
8
git_rev : main
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ REM ### Create a Conda package for Caelus Python Library
6
6
REM # Run from the script directory
7
7
cd " %~dp0 " || exit /B 1
8
8
9
- set caelus_version = " v3 .0.0"
9
+ set caelus_version = " v4 .0.0"
10
10
set script_dir = " %~dp0 "
11
11
12
12
REM Activate base/root environment for build and constructor
Original file line number Diff line number Diff line change 9
9
# Run from the script directory
10
10
cd ${0%/* } || exit 1
11
11
12
- caelus_version=" v3 .0.0"
12
+ caelus_version=" v4 .0.0"
13
13
script_dir=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
14
14
15
15
# Set up conda environment
Original file line number Diff line number Diff line change 1
1
# Custom conda installer for Caelus Python Library
2
2
3
3
name : caelus-conda
4
- version : v3 .0.0
4
+ version : v4 .0.0
5
5
6
6
install_in_dependency_order : True
7
7
Original file line number Diff line number Diff line change @@ -14,5 +14,5 @@ FILES=(setup.py
14
14
)
15
15
16
16
for fname in ${FILES[@]} ; do
17
- sed -i ' ' -e ' s/2 .0.0/3 .0.0/' ${fname}
17
+ sed -i ' ' -e ' s/3 .0.0/4 .0.0/' ${fname}
18
18
done
Original file line number Diff line number Diff line change 8
8
9
9
from setuptools import setup , find_packages
10
10
11
- VERSION = "3 .0.0"
11
+ VERSION = "4 .0.0"
12
12
13
13
classifiers = [
14
14
"Development Status :: 5 - Production/Stable" ,
26
26
27
27
28
28
setup (
29
- name = "caelus" ,
29
+ name = "py- caelus" ,
30
30
version = VERSION ,
31
31
url = "https://sayerhs.github.io/cpl/" ,
32
32
license = "Apache License, Version 2.0" ,
57
57
""" ,
58
58
python_requires = '>=3.10' ,
59
59
install_requires = [
60
- "pip" ,
61
60
"six>=1.16.0" ,
62
61
"numpy>=1.26.0" ,
63
62
"scipy>=1.11.0" ,
You can’t perform that action at this time.
0 commit comments