Skip to content

Commit

Permalink
Bump minimum Python version to 3.8 (#509)
Browse files Browse the repository at this point in the history
  • Loading branch information
janosh authored Aug 31, 2023
1 parent b715626 commit 8157083
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
conda config --set always_yes yes --set changeps1 no
conda update -q conda
conda info -a
conda create -q -n test-environment python=3.7
conda create -q -n test-environment python=3.8
source activate test-environment
conda update --quiet --all
pip install --quiet --ignore-installed -r requirements.txt -r requirements-ci.txt
Expand All @@ -39,7 +39,7 @@ jobs:
conda config --set always_yes yes --set changeps1 no
conda update -q conda
conda info -a
conda create -q -n test-environment python=3.7
conda create -q -n test-environment python=3.8
source activate test-environment
conda update --quiet --all
pip install --quiet --ignore-installed -r requirements.txt -r requirements-ci.txt
Expand Down
2 changes: 1 addition & 1 deletion docs/_sources/installation.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Installing FireWorks
====================

.. note:: We suggest that you use Python 3.7 or higher, especially in production. There is a `bug <https://groups.google.com/forum/#!topic/modwsgi/DW-SlIb07rE>`_ in Python 2.7.2 that could affect FireWorks (although we haven't seen any problems yet).
.. note:: We suggest you use Python 3.8 or higher, especially in production.

Install MongoDB
===============
Expand Down
2 changes: 1 addition & 1 deletion docs_rst/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Installing FireWorks
====================

.. note:: We suggest that you use Python 3.7 or higher, especially in production. There is a `bug <https://groups.google.com/forum/#!topic/modwsgi/DW-SlIb07rE>`_ in Python 2.7.2 that could affect FireWorks (although we haven't seen any problems yet).
.. note:: We suggest you use Python 3.8 or higher, especially in production.

Install MongoDB
===============
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"fireworks.flask_site.static.font-awesome-4.0.3": ["css/*", "fonts/*", "less/*", "scss/*"],
},
zip_safe=False,
python_requires=">=3.7",
python_requires=">=3.8",
install_requires=[
"ruamel.yaml>=0.15.35",
"pymongo>=3.3.0",
Expand Down

0 comments on commit 8157083

Please sign in to comment.