Skip to content

Commit

Permalink
fixed problems with requirements.txt versions
Browse files Browse the repository at this point in the history
  • Loading branch information
marceloprates committed Jul 2, 2024
1 parent f0bb0a2 commit 97d01c0
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
25 changes: 18 additions & 7 deletions notebooks/examples.ipynb

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

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",
Expand Down

0 comments on commit 97d01c0

Please sign in to comment.