Skip to content

Commit

Permalink
Disallow latest matplotlib and python 3.5 and update cache.
Browse files Browse the repository at this point in the history
  • Loading branch information
brittonsmith authored and chummels committed Jan 13, 2021
1 parent 67eec37 commit c727694
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ jobs:

- restore_cache:
name: "Restore dependencies cache."
key: python-<< parameters.tag >>-dependencies-v7
key: python-<< parameters.tag >>-dependencies-v8

- install-dependencies:
yttag: << parameters.yttag >>
Expand All @@ -212,7 +212,7 @@ jobs:

- save_cache:
name: "Save dependencies cache."
key: python-<< parameters.tag >>-dependencies-v7
key: python-<< parameters.tag >>-dependencies-v8
paths:
- ~/.cache/pip
- ~/venv
Expand Down Expand Up @@ -272,14 +272,14 @@ jobs:
- checkout
- restore_cache:
name: "Restore dependencies cache."
key: python-<< parameters.tag >>-dependencies-v7
key: python-<< parameters.tag >>-dependencies-v8
- set-env
- install-dependencies:
yttag: "YT_HEAD"
- configure-trident
- save_cache:
name: "Save dependencies cache."
key: python-<< parameters.tag >>-dependencies-v7
key: python-<< parameters.tag >>-dependencies-v8
paths:
- ~/.cache/pip
- ~/venv
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ def get_version(filename):
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
Expand All @@ -60,7 +59,7 @@ def get_version(filename):
install_requires=[
'astropy',
'h5py',
'matplotlib',
'matplotlib<3.3.0',
'numpy!=1.14.0',
'requests',
'scipy',
Expand Down

0 comments on commit c727694

Please sign in to comment.