File tree Expand file tree Collapse file tree 4 files changed +7
-5
lines changed Expand file tree Collapse file tree 4 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ Naming Conventions
110
110
Python 2 and 3 Support
111
111
----------------------
112
112
113
- Ideally, CAMeL Tools should be able to run on Python 3.8 - 3.11 .
113
+ Ideally, CAMeL Tools should be able to run on Python 3.8 - 3.12 .
114
114
`Here's a nice cheat-sheet <http://python-future.org/compatible_idioms.html >`_ of
115
115
how to do that.
116
116
@@ -135,10 +135,11 @@ versions used for testing by running the following commands:
135
135
pyenv install 3.9.19
136
136
pyenv install 3.10.14
137
137
pyenv install 3.11.9
138
+ pyenv install 3.12.4
138
139
139
140
# This generates a .python-version file that helps pyenv automatically determine
140
141
# which python versions are associated with the application.
141
- pyenv local 3.8.19 3.9.19 3.10.14 3.11.9
142
+ pyenv local 3.8.19 3.9.19 3.10.14 3.11.9 3.12.4
142
143
143
144
You also need to install tox:
144
145
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ at `New York University Abu Dhabi <http://nyuad.nyu.edu/>`_.
40
40
Installation
41
41
------------
42
42
43
- You will need Python 3.8 - 3.11 (64-bit) as well as
43
+ You will need Python 3.8 - 3.12 (64-bit) as well as
44
44
`the Rust compiler <https://www.rust-lang.org/learn/get-started >`_ installed.
45
45
46
46
Linux/macOS
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Getting Started
4
4
Installation
5
5
------------
6
6
7
- You will need Python 3.8 - 3.11 (64-bit) as well as
7
+ You will need Python 3.8 - 3.12 (64-bit) as well as
8
8
`the Rust compiler <https://www.rust-lang.org/learn/get-started >`_ installed.
9
9
10
10
Linux/macOS
Original file line number Diff line number Diff line change 51
51
'Programming Language :: Python :: 3.9' ,
52
52
'Programming Language :: Python :: 3.10' ,
53
53
'Programming Language :: Python :: 3.11' ,
54
+ 'Programming Language :: Python :: 3.12' ,
54
55
'Topic :: Scientific/Engineering' ,
55
56
'Topic :: Scientific/Engineering :: Artificial Intelligence' ,
56
57
'Topic :: Scientific/Engineering :: Information Analysis' ,
140
141
long_description = LONG_DESCRIPTION ,
141
142
classifiers = CLASSIFIERS ,
142
143
install_requires = INSTALL_REQUIRES ,
143
- python_requires = '>=3.8.0, <3.12 '
144
+ python_requires = '>=3.8.0, <3.13 '
144
145
)
You can’t perform that action at this time.
0 commit comments