New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details β†’ β†’
Socket
Book a DemoSign in
Socket

pyquadkey2

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pyquadkey2 - pypi Package Compare versions

Comparing version
0.3.0
to
0.3.1
+5
-5
PKG-INFO
Metadata-Version: 2.1
Name: pyquadkey2
Version: 0.3.0
Version: 0.3.1
Summary: Python implementation of geographical tiling using QuadKeys as proposed by Microsoft

@@ -64,4 +64,4 @@ Home-page: https://github.com/muety/pyquadkey2

```bash
$ wget https://github.com/muety/pyquadkey2/releases/download/0.3.0/pyquadkey2-0.3.0.tar.gz
$ pip install pyquadkey2-0.3.0.tar.gz
$ wget https://github.com/muety/pyquadkey2/releases/download/0.3.1/pyquadkey2-0.3.1.tar.gz
$ pip install pyquadkey2-0.3.1.tar.gz
```

@@ -115,6 +115,6 @@

pip install setuptools wheel auditwheel
python setup.py bdist_wheel
python -m build
cd dist
auditwheel repair *.whl
twine upload --repository testpypi wheelhouse/*
twine upload --repository testpypi wheelhouse/* ../*.tar.gz
```

@@ -121,0 +121,0 @@

@@ -39,4 +39,4 @@ # 🌍 pyquadkey2

```bash
$ wget https://github.com/muety/pyquadkey2/releases/download/0.3.0/pyquadkey2-0.3.0.tar.gz
$ pip install pyquadkey2-0.3.0.tar.gz
$ wget https://github.com/muety/pyquadkey2/releases/download/0.3.1/pyquadkey2-0.3.1.tar.gz
$ pip install pyquadkey2-0.3.1.tar.gz
```

@@ -90,6 +90,6 @@

pip install setuptools wheel auditwheel
python setup.py bdist_wheel
python -m build
cd dist
auditwheel repair *.whl
twine upload --repository testpypi wheelhouse/*
twine upload --repository testpypi wheelhouse/* ../*.tar.gz
```

@@ -96,0 +96,0 @@

@@ -17,3 +17,3 @@ #!/usr/bin/env python

name='pyquadkey2',
version='0.3.0',
version='0.3.1',
description='Python implementation of geographical tiling using QuadKeys as proposed by Microsoft',

@@ -20,0 +20,0 @@ long_description=long_description,

Metadata-Version: 2.1
Name: pyquadkey2
Version: 0.3.0
Version: 0.3.1
Summary: Python implementation of geographical tiling using QuadKeys as proposed by Microsoft

@@ -64,4 +64,4 @@ Home-page: https://github.com/muety/pyquadkey2

```bash
$ wget https://github.com/muety/pyquadkey2/releases/download/0.3.0/pyquadkey2-0.3.0.tar.gz
$ pip install pyquadkey2-0.3.0.tar.gz
$ wget https://github.com/muety/pyquadkey2/releases/download/0.3.1/pyquadkey2-0.3.1.tar.gz
$ pip install pyquadkey2-0.3.1.tar.gz
```

@@ -115,6 +115,6 @@

pip install setuptools wheel auditwheel
python setup.py bdist_wheel
python -m build
cd dist
auditwheel repair *.whl
twine upload --repository testpypi wheelhouse/*
twine upload --repository testpypi wheelhouse/* ../*.tar.gz
```

@@ -121,0 +121,0 @@

@@ -29,2 +29,3 @@ import os

self.assertEqual('1202032333311320', quadkey.from_geo((49.014205, 8.420025), 16).key)
self.assertEqual('311213', quadkey.from_geo((-27.052395, 152.97702), 6).key) # https://github.com/muety/pyquadkey2/issues/13

@@ -31,0 +32,0 @@ def testFromGeoInvalidLevel(self):

Sorry, the diff of this file is too big to display