Skip to content

Commit

Permalink
Changed required versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mcocdawc committed Jul 11, 2021
1 parent a2271bf commit 3c14dfa
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
9 changes: 5 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ shared: &shared
- run:
name: Running tests
command: python3 -m pytest --cov=./src/chemcoord
- run:
name: Upload coverage reports to Codecov
command: |
bash <(curl -s https://codecov.io/bash)

workflows:
sample:
Expand All @@ -35,6 +31,11 @@ jobs:
<<: *shared
docker:
- image: cimg/python:3.8
steps:
- run:
name: Upload coverage reports to Codecov
command: |
bash <(curl -s https://codecov.io/bash)
py39:
<<: *shared
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Features
Installation guide
------------------

A working python installation is required (2.7 and >=3.5 are possible).
A working python 3 installation is required (>=3.7 are possible).

It is highly recommended to use this module in combination with
`Ipython <http://ipython.org/>`__ and `jupyter <http://jupyter.org/>`__.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/installation.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Installation guide
==================
A working python installation is required (2.7 and >=3.5 are possible).
A working python 3 installation is required (versions >=3.7 are possible).

It is highly recommended to use this module in combination with
`Ipython <http://ipython.org/>`_ and `jupyter <http://jupyter.org/>`_.
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
'Operating System :: Microsoft :: Windows',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics']

Expand Down

0 comments on commit 3c14dfa

Please sign in to comment.