Skip to content

Commit

Permalink
Merge pull request #95 from callumrollo/tidy
Browse files Browse the repository at this point in the history
[DEP] remove unused dependencies
  • Loading branch information
callumrollo authored Nov 12, 2024
2 parents 4b1e089 + eaa5354 commit 703d9c6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
4 changes: 1 addition & 3 deletions glidertest/tools.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import matplotlib.dates as mdates
import matplotlib.pyplot as plt
import datetime
import numpy as np
import pandas as pd
import seaborn as sns
Expand All @@ -10,7 +9,6 @@
from scipy import stats
from skyfield import almanac
from skyfield import api
from tqdm import tqdm
import matplotlib.colors as mcolors
import gsw
import cartopy.crs as ccrs
Expand Down Expand Up @@ -344,7 +342,7 @@ def sunset_sunrise(time, lat, lon):

sunrise = []
sunset = []
for n in tqdm(range(len(bluffton))):
for n in range(len(bluffton)):

f = almanac.sunrise_sunset(eph, bluffton[n])
t, y = almanac.find_discrete(time_utc[n], time_utc_offset[n], f)
Expand Down
2 changes: 0 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ matplotlib
pandas
seaborn
scipy
cmocean
skyfield
tqdm
jupyterlab
pytest
pytest-cov
Expand Down
4 changes: 1 addition & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ matplotlib
pandas
seaborn
scipy
cmocean
skyfield
tqdm
gsw
sgp4>=2.14
cartopy
cartopy

0 comments on commit 703d9c6

Please sign in to comment.