Skip to content

Commit

Permalink
[HOTFIX] Python 3.12 specified in some documentation, examples and py…
Browse files Browse the repository at this point in the history
…pi setup
  • Loading branch information
AlejandroCN7 committed Jul 2, 2024
1 parent 1a4b866 commit c4a6ac0
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Describe the characteristic of your environment:
* Describe how Sinergym was installed: e.g. pip, docker, source, ...
* Sinergym Version: e.g. 2.3.0
* OS: e.g. Ubuntu 22.04 LTS or Sinergym container image
* Python version e.g. 3.10 or Sinergym container
* Python version e.g. 3.12 or Sinergym container
* Gymnasium version:
* Versions of any other relevant libraries:

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Base on nrel/energyplus from Nicholas Long but using
# Ubuntu, Python 3.10 and BCVTB
# Ubuntu, Python 3.12 and BCVTB
ARG UBUNTU_VERSION=24.04
FROM ubuntu:${UBUNTU_VERSION}

Expand Down
2 changes: 1 addition & 1 deletion INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Next, we recommend creating a **virtual environment** as follows:

```sh
$ sudo apt-get install python-virtualenv virtualenv
$ virtualenv env_sinergym --python=python3.10
$ virtualenv env_sinergym --python=python3.12
$ source env_sinergym/bin/activate
$ pip install -e .[extras]
```
Expand Down
2 changes: 1 addition & 1 deletion python_environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: sinergym
channels:
- nodefaults
dependencies:
- python=3.10
- python=3.12
- anaconda
- pip
- pip:
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 5 - Production/Stable
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.12
License :: OSI Approved :: MIT License
Operating System :: OS Independent

[pytype]
inputs = sinergym
python_version = 3.10
python_version = 3.12

0 comments on commit c4a6ac0

Please sign in to comment.