Skip to content

Commit

Permalink
Add 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
loganbvh committed Aug 29, 2024
1 parent 6646f4f commit e5067bd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ Installation
.. role:: python(code)
:language: python

``SuperScreen`` requires ``Python >=3.8, <3.12`` and can be installed either from
``SuperScreen`` requires ``Python >=3.8, <3.13`` and can be installed either from
`PyPI <https://pypi.org/project/superscreen/>`_, the Python Package index,
or from the ``SuperScreen`` `GitHub repository <https://github.com/loganbvh/superscreen>`_.

We recommend creating a new
`conda environment <https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html>`_
for ``SuperScreen`` to avoid dependency conflicts with other packages. To create a new conda environment called
``superscreen``, run ``conda create --name superscreen python="3.x"``, where ``x`` is one of ``{8, 9, 10, 11}``.
``superscreen``, run ``conda create --name superscreen python="3.x"``, where ``x`` is one of ``{8, 9, 10, 11, 12}``.
After the environment has been created, run ``conda activate superscreen`` to activate it.


Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
AUTHOR_EMAIL = "[email protected]"
URL = "https://github.com/loganbvh/superscreen"
LICENSE = "MIT"
PYTHON_VERSION = ">=3.8, <3.12"
PYTHON_VERSION = ">=3.8, <3.13"

INSTALL_REQUIRES = [
"dill",
Expand Down Expand Up @@ -77,6 +77,7 @@
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Physics
"""
Expand Down

0 comments on commit e5067bd

Please sign in to comment.