Thu, 11 Jul 2024 14:21:34 +0200
MicroPython
- Updated the list of known CircuitPython boards for CPy 9.1.0.
- Updated the list of known UF2 capable boards.
10128
a43ce4625e1e
Added the forgotten Windows start script for the pip management application.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1 | # -*- coding: utf-8 -*- |
a43ce4625e1e
Added the forgotten Windows start script for the pip management application.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
2 | |
10439
21c28b0f9e41
Updated copyright for 2024.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
10128
diff
changeset
|
3 | # Copyright (c) 2023 - 2024 Detlev Offenbach <detlev@die-offenbachs.de> |
10128
a43ce4625e1e
Added the forgotten Windows start script for the pip management application.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
4 | # |
a43ce4625e1e
Added the forgotten Windows start script for the pip management application.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
5 | |
a43ce4625e1e
Added the forgotten Windows start script for the pip management application.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
6 | """ |
a43ce4625e1e
Added the forgotten Windows start script for the pip management application.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
7 | Module implementing the Windows entry point. |
a43ce4625e1e
Added the forgotten Windows start script for the pip management application.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
8 | """ |
a43ce4625e1e
Added the forgotten Windows start script for the pip management application.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
9 | |
a43ce4625e1e
Added the forgotten Windows start script for the pip management application.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
10 | if __name__ == "__main__": |
a43ce4625e1e
Added the forgotten Windows start script for the pip management application.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
11 | from eric7_pip import main |
a43ce4625e1e
Added the forgotten Windows start script for the pip management application.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
12 | |
a43ce4625e1e
Added the forgotten Windows start script for the pip management application.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
13 | main() |