Skip to content

Commit eff3818

Browse files
Bump pip version to 1.2.0 (#1170)
1 parent 4fbb41a commit eff3818

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Welcome to the Motionalᵀᴹ nuTonomy® downloadable driverless vehicle softwar
2323
- [Citation](#citation)
2424

2525
## Changelog
26+
- Aug. 28, 2025: Devkit v1.2.0: Change to supporting Python 3.9 and Python 3.12.
2627
- Sep. 25, 2023: Devkit v1.1.11: Specify version for various pip requirements.
2728
- Feb. 13, 2023: Devkit v1.1.10: Specify version for various pip requirements.
2829
- Sep. 20, 2021: Devkit v1.1.9: Refactor tracking eval code for custom datasets with different classes.
@@ -52,7 +53,7 @@ Welcome to the Motionalᵀᴹ nuTonomy® downloadable driverless vehicle softwar
5253
<img src="https://cdn.cookielaw.org/logos/8c60fe9e-585e-46b1-8f92-eba17239401e/d3e43cda-e0a4-42f2-9c04-0e1900c3f68f/808c47fb-8484-44eb-b369-d90d6bb4733e/motional_logo_stack_colorrev_rgb_black.png" width="350px" style="vertical-align: middle"/>
5354

5455
We use a common devkit for nuScenes and nuImages.
55-
The devkit is tested for Python 3.6 and Python 3.7.
56+
The devkit is tested for Python 3.9 and Python 3.12.
5657
To install Python, please check [here](https://github.com/nutonomy/nuscenes-devkit/blob/master/docs/installation.md#install-python).
5758

5859
Our devkit is available and can be installed via [pip](https://pip.pypa.io/en/stable/installing/) :

docs/installation.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ For these, you will need to download the source code and [manually install the r
2121

2222
## Install Python
2323

24-
The devkit is tested for Python 3.6 onwards, but we recommend to use Python 3.7.
24+
The devkit is tested for Python 3.9 and Python 3.12, but we recommend to use Python 3.12.
2525
For Ubuntu: If the right Python version is not already installed on your system, install it by running:
2626
```
2727
sudo apt install python-pip
2828
sudo add-apt-repository ppa:deadsnakes/ppa
2929
sudo apt-get update
30-
sudo apt-get install python3.7
31-
sudo apt-get install python3.7-dev
30+
sudo apt-get install python3.12
31+
sudo apt-get install python3.12-dev
3232
```
3333
For Mac OS download and install from `https://www.python.org/downloads/mac-osx/`.
3434

@@ -42,7 +42,7 @@ See the [official Miniconda page](https://conda.io/en/latest/miniconda.html).
4242
#### Setup a Conda environment
4343
We create a new Conda environment named `nuscenes`. We will use this environment for both nuScenes and nuImages.
4444
```
45-
conda create --name nuscenes python=3.7
45+
conda create --name nuscenes python=3.12
4646
```
4747

4848
#### Activate the environment
@@ -81,7 +81,7 @@ For more details, see [this issue](https://github.com/nutonomy/nuscenes-devkit/i
8181
#### Create the virtual environment
8282
We create a new virtual environment named `nuscenes`.
8383
```
84-
mkvirtualenv nuscenes --python=python3.7
84+
mkvirtualenv nuscenes --python=python3.12
8585
```
8686

8787
#### Activate the virtual environment

python-sdk/nuscenes/eval/prediction/docker_container/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ ENV PYTHONPATH=/nuscenes-dev/python-sdk
3232

3333
COPY setup/requirements.txt .
3434

35-
RUN bash -c "conda create -y -n nuscenes python=3.7 \
35+
RUN bash -c "conda create -y -n nuscenes python=3.12 \
3636
&& source activate nuscenes \
3737
&& pip install --no-cache-dir -r /nuscenes-dev/prediction/requirements.txt \
3838
&& conda clean --yes --all"

setup/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def get_dirlist(_rootdir):
3939

4040
setuptools.setup(
4141
name='nuscenes-devkit',
42-
version='1.1.11',
42+
version='1.2.0',
4343
author='Holger Caesar, Oscar Beijbom, Qiang Xu, Varun Bankiti, Alex H. Lang, Sourabh Vora, Venice Erin Liong, '
4444
'Sergi Widjaja, Kiwoo Shin, Caglayan Dicle, Freddy Boulton, Whye Kit Fong, Asha Asvathaman, Lubing Zhou '
4545
'et al.',

0 commit comments

Comments
 (0)