Skip to content

Commit

Permalink
Bumping version to v1.2, and dropping support for Python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ericthewizard committed Mar 25, 2021
1 parent 532d2ed commit 7633e9e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ The Space Physics Environment Data Analysis Software ([SPEDAS](http://spedas.org

## Requirements

Python 3.6+ is required.
Python 3.7+ is required.

We recommend [Anaconda](https://www.continuum.io/downloads/) which comes with a suite of packages useful for scientific data analysis.

Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
numpy<=1.19.3
numpy>=1.20.0
requests
cdflib>=0.3.20
pytplot>=1.7.18
pytplot>=1.7.23
cdasws>=1.7.24
netCDF4
pywavelets
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='pyspedas',
version='1.1.6',
version='1.2.0',
description='Python Space Physics Environment Data Analysis Software (SPEDAS)',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
Expand All @@ -25,9 +25,9 @@
project_urls={'Information': 'http://spedas.org/wiki/',
},
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=['numpy<=1.19.3', 'requests', 'pytplot>=1.7.18',
install_requires=['numpy>=1.20.0', 'requests', 'pytplot>=1.7.23',
'cdflib>=0.3.20', 'cdasws>=1.7.24', 'netCDF4',
'pywavelets', 'pyqtgraph>=0.11.1', 'astropy'],
python_requires='>=3.6',
python_requires='>=3.7',
include_package_data=True,
)

0 comments on commit 7633e9e

Please sign in to comment.