Skip to content

Commit 745b979

Browse files
committed
Fix corner case with encoding in PowerShell
1 parent 1de6643 commit 745b979

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ since version 1.3.0.
88
## [Unreleased]
99

1010
### Fixed
11+
- Fix setup encoding comment to deal with corner case under PowerShell.
1112
- Enforce dependency `numpy >= 1.21` for Python >= 3.7 due to `numpy`
1213
vulnerability CVE-2021-33430.
1314
- Fix wrong marker for `unittest2` in development requirements.

packages/basemap/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /usr/bin/env python
2-
# -*- coding: utf8 -*-
2+
# -*- coding: utf-8 -*-
33
# flake8: noqa: E122
44
"""basemap -- Plot data on map projections with matplotlib."""
55

packages/basemap/utils/GeosLibrary.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /usr/bin/env python
2-
# -*- coding: utf8 -*-
2+
# -*- coding: utf-8 -*-
33
#
44
# Copyright (c) 2021 Víctor Molina García
55

packages/basemap_data/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /usr/bin/env python
2-
# -*- coding: utf8 -*-
2+
# -*- coding: utf-8 -*-
33
# flake8: noqa: E122
44
"""basemap_data -- Data assets for matplotlib basemap."""
55

packages/basemap_data_hires/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /usr/bin/env python
2-
# -*- coding: utf8 -*-
2+
# -*- coding: utf-8 -*-
33
# flake8: noqa: E122
44
"""basemap_data_hires -- High-resolution data assets for matplotlib basemap."""
55

0 commit comments

Comments
 (0)