Skip to content

Commit f6d9a2c

Browse files
committed
ext 7 py
1 parent 575a80f commit f6d9a2c

File tree

4 files changed

+4
-12
lines changed

4 files changed

+4
-12
lines changed

.github/workflows/deploy-conda.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
miniconda-version: "latest"
3030
auto-update-conda: true
3131

32-
- name: Install prerequisites
33-
run: sudo apt install libgeos3.10.2 libgeos-dev -y
32+
# - name: Install prerequisites
33+
# run: sudo apt install libgeos3.10.2 libgeos-dev -y
3434

3535
- name: Build and upload package
3636
shell: bash -el {0}

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ include README.rst
4949
include AUTHORS.txt
5050
include LICENSE.txt
5151
include requirements.txt
52+
include requirements-basemap.txt
5253
include pyproject.toml
5354
include .coveragerc
5455
include tox.ini

restoreio/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.8.2"
1+
__version__ = "0.9.0"

setup.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -168,9 +168,6 @@ def main(argv):
168168
documentation_url = url + '/blob/main/README.rst'
169169
tracker_url = url + '/issues'
170170

171-
# External dependency url
172-
bm_git = 'https://github.com/matplotlib/basemap#subdirectory=packages/'
173-
174171
# Inputs to setup
175172
metadata = dict(
176173
name=package_name,
@@ -198,12 +195,6 @@ def main(argv):
198195
install_requires=requirements,
199196
python_requires='>=3.7',
200197
setup_requires=[
201-
# 'basemap @ ' + bm_git + 'basemap',
202-
# 'basemap-data @ ' + bm_git + 'basemap_data',
203-
# 'basemap-data-hires @ ' + bm_git + 'basemap_data_hires',
204-
# 'basemap @ https://github.com/matplotlib/basemap/archive/refs/heads/develop.zip',
205-
# 'basemap-data @ https://github.com/matplotlib/basemap/archive/refs/heads/develop.zip',
206-
# 'basemap-data-hires @ https://github.com/matplotlib/basemap/archive/refs/heads/develop.zip',
207198
'setuptools',
208199
'wheel',
209200
'pytest-runner'],

0 commit comments

Comments
 (0)