-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix Python versions #587
Fix Python versions #587
Changes from 5 commits
f7d6a99
5a7c956
4c2d53d
78733fe
7e0a2c5
1b45552
55aa7ad
c5638c4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
# Conda environment for running tests in odc-tools | ||
# conda env create -f test-env-py38.yml | ||
# conda activate odc-tests-py38 | ||
# conda env create -f test-env-py39.yml | ||
# conda activate odc-tests-py39 | ||
|
||
name: odc-tests-py38 | ||
name: odc-tests-py39 | ||
channels: | ||
- conda-forge | ||
|
||
dependencies: | ||
- python=3.8 | ||
- python=3.9 | ||
|
||
# Datacube | ||
- datacube>=1.8.15 | ||
|
@@ -46,7 +46,7 @@ dependencies: | |
- pytest-httpserver | ||
- pytest-cov | ||
- pytest-timeout | ||
- moto | ||
- moto[server] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. not valid conda syntax, this only works with There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, I had a feeling that was the case. I've installed conda and I'll deal with it tomorrow. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's the moto version that's the issue - conda is pulling in an ancient version for some reason. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Lol. I just removed the ancient pin on |
||
- deepdiff | ||
|
||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
At some point, we should use the GitHub actions matrix to parameterise this and test more than a single Python version.