fixed problems with requirements.txt versions

This commit is contained in:
Marcelo Prates 2024-07-02 19:50:54 -03:00
parent f0bb0a2008
commit 97d01c0829
4 changed files with 26 additions and 15 deletions

View File

@ -25,10 +25,10 @@ jobs:
with:
fetch-depth: 0
- name: Set up Python 3.9
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.11
- name: Install build and twine
run: |

File diff suppressed because one or more lines are too long

View File

@ -1,5 +1,5 @@
numpy==1.24.4
matplotlib==3.9.0
shapely==2.0.4
osmnx==1.9.3
ipykernel==6.29.5
numpy>=1.20,<1.25
matplotlib>=3.9.0
shapely>=2.0.0
osmnx>=1.9.3
ipykernel>=6.29.5

View File

@ -7,7 +7,7 @@ presets_dir = os.path.abspath(os.path.join(os.path.pardir, "presets"))
setup(
name="prettymaps",
version="v1.1.0",
version="v1.2.0",
description="A simple python library to draw pretty maps from OpenStreetMap data",
long_description=parent_dir.joinpath("README.md").read_text(),
long_description_content_type="text/markdown",