Skip to content
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 version of matplotlib #306

Merged
merged 1 commit into from
Oct 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 3 additions & 4 deletions navigator/actions/google/maps.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,18 @@

Interface for interacting with Google Maps API.
"""
import requests
import string
import datetime
import urllib.parse
import requests
import pytz
import polyline
import aiohttp
import matplotlib.pyplot as plt
import numpy as np
import matplotlib.colors as mcolors
import cartopy.crs as ccrs
import cartopy.io.img_tiles as cimgt
import matplotlib.colors as mcolors
from navigator.conf import BASE_DIR, TIMEZONE
from ...conf import BASE_DIR, TIMEZONE
from .models import (
TravelerSearch
)
Expand Down
2 changes: 1 addition & 1 deletion navigator/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
__description__ = (
"Navigator Web Framework based on aiohttp, " "with batteries included."
)
__version__ = "2.10.29"
__version__ = "2.10.30"
__author__ = "Jesus Lara"
__author_email__ = "[email protected]"
__license__ = "BSD"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def readme():
"beautifulsoup4==4.12.3",
"polyline==2.0.1",
"cartopy==0.22.0",
"matplotlib==3.8.3",
"matplotlib>=3.8.3",
"sockjs==0.11.0",
"aiohttp-sse==2.2.0",
"aiomcache>=0.8.2",
Expand All @@ -165,7 +165,7 @@ def readme():
"alt-aiohttp-cors==0.7.1",
"brotli==1.1.0",
"brotlicffi==1.1.0.0",
"aiofile==3.8.8",
"aiofile==3.9.0",
"psutil==6.0.0",
"aiormq==6.8.1",
"Faker==22.2.0",
Expand Down
Loading