Skip to content

Commit 893a12e

Browse files
2021 october edition - update materials
1 parent 8ec06bf commit 893a12e

251 files changed

Lines changed: 20147 additions & 17240 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,6 @@ dmypy.json
131131
# custom repo information
132132
westerschelde/
133133
etna_*/
134-
herstappe/
135-
averbode/
136134
draft/
137135
other/
138136
20200302_preps_gig_python.md

check_environment.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,16 @@ def import_version(pkg, min_ver, fail_msg=""):
4949
print(sys.version)
5050
pyversion = Version(sys.version)
5151
if pyversion >= "3":
52-
if pyversion < "3.6":
53-
print(FAIL, "Python version 3.6 is required,"
52+
if pyversion < "3.7":
53+
print(FAIL, "Python version 3.7 is required,"
5454
" but %s is installed." % sys.version)
5555
else:
5656
print(FAIL, "Python 3 is required, but %s is installed." % sys.version)
5757

5858
print()
5959
requirements = {'numpy': "1.9", 'matplotlib': "2.0",
6060
'pandas': "1.1", 'xarray': '0.16',
61-
'geopandas': '0.8', 'rasterio': '1.1',
61+
'geopandas': '0.9', 'rasterio': '1.1',
6262
'owslib': '0.19', 'fsspec': '0.8',
6363
's3fs': '0.3', 'pyproj': '2.4'}
6464

img/matplotlib_fundamentals.png

34 KB
Loading

img/matplotlib_fundamentals.svg

Lines changed: 246 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)