8000 Set up airspeed velocity benchmarks by kandersolar · Pull Request #1049 · pvlib/pvlib-python · GitHub
[go: up one dir, main page]

Skip to content

Set up airspeed velocity benchmarks #1049

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

Merged
merged 33 commits into from
Sep 10, 2020
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
ecf2a9e
add airspeed velocity config and tests
wholmgren Aug 13, 2018
d53b782
add documentation
wholmgren Aug 14, 2018
cd25327
Merge branch 'master' into asv_setup
kandersolar Mar 22, 2020
c75c24d
move whatsnew line to 0.7.2
kandersolar Mar 22, 2020
53568cb
update asv.conf.json to most recent asv format
kandersolar Mar 22, 2020
37095c2
add useful tips to readme
kandersolar Mar 22, 2020
1c6cbb7
modify asv conf to install optional pvlib reqs (pytables etc)
kandersolar Mar 22, 2020
8db2f63
add more benchmarks for location and solarposition
kandersolar Mar 22, 2020
48e6366
fix solarposition docstring
kandersolar Mar 22, 2020
636bcaf
add tracking benchmark file
kandersolar Mar 22, 2020
5a93520
add irradiance benchmark file
kandersolar Mar 22, 2020
d480806
fix tracking benchmarks
kandersolar Mar 22, 2020
8b3eb3c
Merge branch 'master' into asv_setup
kandersolar Jul 22, 2020
c07003a
test python3.7 only, regardless of installed version
kandersolar Jul 22, 2020
329ba90
switch from conda to virtualenv
kandersolar Jul 22, 2020
066bd9e
restructure
kandersolar Sep 5, 2020
2e3c76e
stickler
kandersolar Sep 6, 2020
3f5b1ba
drop old whatsnew entry
kandersolar Sep 6, 2020
008f8ca
use separate classes for version checking
kandersolar Sep 6, 2020
25d7b9f
fix aoi_projection benchmark
kandersolar Sep 7, 2020
daf7e40
do version switching in setup() instead of in global scope
kandersolar Sep 7, 2020
c7bb2ec
singular space to satisfy stickler
kandersolar Sep 7, 2020
01e79a4
move asv conf to pvlib
kandersolar Sep 8, 2020
0ff98b6
move benchmarks to subdirectory
kandersolar Sep 8, 2020
d42ef6d
change to local repo instead of cloning from GH
kandersolar Sep 9, 2020
37993fa
docs
kandersolar Sep 9, 2020
605d744
update benchmark readme
kandersolar Sep 9, 2020
8c43a12
Merge branch 'master' into asv_setup
kandersolar Sep 10, 2020
73e6347
create 0.8.1 whatsnew
kandersolar Sep 10, 2020
791ee9b
conda channel ordering
kandersolar Sep 10, 2020
64adc84
link to readme
kandersolar Sep 10, 2020
1021400
fix wrong link
kandersolar Sep 10, 2020
85235a5
benchmark on minimum and latest dependency versions
kandersolar Sep 10, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix solarposition docstring
  • Loading branch information
kandersolar committed Mar 22, 2020
commit 48e6366ea3761d608d3a1e7b3db9f4017d125e4f
2 changes: 1 addition & 1 deletion asv_bench/benchmarks/solarposition.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
ASV benchmarks for location.py
ASV benchmarks for solarposition.py
"""

import pandas as pd
Expand Down
0