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

Bump requirements.txt to latest pypi versions #192

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
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: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,8 @@ target/
# OS X
.DS_Store

# temp
tmp/
# temp
tmp/

# Env vars if using pipenv shell, etc
.env
10 changes: 4 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
repos:
-
repo: 'https://github.com/ambv/black'
# 18.6b1
rev: 22.3.0
- repo: https://github.com/psf/black-pre-commit-mirror
rev: "24.2.0"
hooks:
- id: black
args: ['--safe']
language: python
-
repo: 'https://github.com/PyCQA/flake8'
rev: 5.0.4
rev: 7.0.0
hooks:
- id: flake8
args: [
Expand Down
1 change: 1 addition & 0 deletions mapbox_tilesets/errors.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Error handling for the tilesets CLI"""

from click import ClickException


Expand Down
18 changes: 9 additions & 9 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
boto3==1.23.10
Click==8.0.2
boto3==1.35.47
Click==8.1.7
cligj==0.7.2
numpy==1.19.5
requests==2.27.1
requests-toolbelt==0.9.1
jsonschema==3.0.1
numpy==2.1.2
requests==2.32.3
requests-toolbelt==1.0.0
jsonschema==4.23.0
jsonseq==1.0.0
mercantile==1.1.6
mercantile==1.2.1
supermercado==0.2.0
geojson===2.5.0
urllib3==1.26.16
geojson===3.1.0
urllib3==2.2.3
13 changes: 7 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import os
from codecs import open as codecs_open
from setuptools import setup, find_packages

from setuptools import find_packages, setup

from mapbox_tilesets import __version__

Expand Down Expand Up @@ -28,15 +29,15 @@ def read(fname):
packages=find_packages(exclude=["ez_setup", "examples", "tests"]),
install_requires=[
"boto3",
"click~=8.0.2",
"click~=8.1.7",
"cligj",
"numpy",
"requests",
"requests-toolbelt",
"jsonschema~=3.0",
"jsonschema~=4.23.0",
"jsonseq~=1.0",
"mercantile~=1.1.6",
"geojson~=2.5.0",
"mercantile~=1.2.1",
"geojson~=3.0.0",
],
include_package_data=True,
zip_safe=False,
Expand All @@ -52,7 +53,7 @@ def read(fname):
"pytest==6.2.5",
"pytest-cov",
"pre-commit",
"black==22.3.0",
"black==24.2.0",
"pep8",
"supermercado~=0.2.0",
"toml==0.10.2",
Expand Down