ColabTurtlePlus 2.0.1__tar.gz → 2.0.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -741,7 +741,7 @@ class _Screen:
741
741
  return True
742
742
  if re.search("^#(?:[0-9a-fA-F]{3}){1,2}$", color): # 3 or 6 digit hex color code
743
743
  return True
744
- if re.search("rgb\(\s*(?:(?:\d{1,2}|1\d\d|2(?:[0-4]\d|5[0-5]))\s*,?){3}\)$", color): # rgb color code
744
+ if re.search(r"rgb\(\s*(?:(?:\d{1,2}|1\d\d|2(?:[0-4]\d|5[0-5]))\s*,?){3}\)$", color): # rgb color code
745
745
  return True
746
746
  return False
747
747
 
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: ColabTurtlePlus
3
- Version: 2.0.1
3
+ Version: 2.0.2
4
4
  Summary: An HTML based Turtle implementation with classes for Google Colab and Jupyter Labs
5
5
  Home-page: https://github.com/mathriddle/ColabTurtlePlus
6
6
  Author: Larry Riddle
@@ -9,11 +9,19 @@ License: MIT
9
9
  Project-URL: Bug Tracker, https://github.com/mathriddle/ColabTurtlePlus/issues
10
10
  Project-URL: Examples, https://github.com/mathriddle/ColabTurtlePlus/tree/main/examples_version2
11
11
  Project-URL: Documentation, https://larryriddle.agnesscott.org/ColabTurtlePlus/documentation2.html
12
- Platform: UNKNOWN
13
12
  Classifier: License :: OSI Approved :: MIT License
14
13
  Classifier: Programming Language :: Python :: 3
15
14
  Description-Content-Type: text/markdown
16
15
  License-File: LICENSE
16
+ Dynamic: author
17
+ Dynamic: author-email
18
+ Dynamic: classifier
19
+ Dynamic: description
20
+ Dynamic: description-content-type
21
+ Dynamic: home-page
22
+ Dynamic: license
23
+ Dynamic: license-file
24
+ Dynamic: summary
17
25
 
18
26
  # ColabTurtlePlus
19
27
 
@@ -147,5 +155,3 @@ Documentation for the methods and functions in ColabTurtlePlus can be found at <
147
155
  Acknowledgements
148
156
  ----
149
157
  Inspiration for this work came from Tolga Atam's original ColabTurtle as well as the repositories at jaronma/ColabTurtle_2, diego2500garza/ColabTurtle, and Abstrqt/ColabTurtleClass.
150
-
151
-
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: ColabTurtlePlus
3
- Version: 2.0.1
3
+ Version: 2.0.2
4
4
  Summary: An HTML based Turtle implementation with classes for Google Colab and Jupyter Labs
5
5
  Home-page: https://github.com/mathriddle/ColabTurtlePlus
6
6
  Author: Larry Riddle
@@ -9,11 +9,19 @@ License: MIT
9
9
  Project-URL: Bug Tracker, https://github.com/mathriddle/ColabTurtlePlus/issues
10
10
  Project-URL: Examples, https://github.com/mathriddle/ColabTurtlePlus/tree/main/examples_version2
11
11
  Project-URL: Documentation, https://larryriddle.agnesscott.org/ColabTurtlePlus/documentation2.html
12
- Platform: UNKNOWN
13
12
  Classifier: License :: OSI Approved :: MIT License
14
13
  Classifier: Programming Language :: Python :: 3
15
14
  Description-Content-Type: text/markdown
16
15
  License-File: LICENSE
16
+ Dynamic: author
17
+ Dynamic: author-email
18
+ Dynamic: classifier
19
+ Dynamic: description
20
+ Dynamic: description-content-type
21
+ Dynamic: home-page
22
+ Dynamic: license
23
+ Dynamic: license-file
24
+ Dynamic: summary
17
25
 
18
26
  # ColabTurtlePlus
19
27
 
@@ -147,5 +155,3 @@ Documentation for the methods and functions in ColabTurtlePlus can be found at <
147
155
  Acknowledgements
148
156
  ----
149
157
  Inspiration for this work came from Tolga Atam's original ColabTurtle as well as the repositories at jaronma/ColabTurtle_2, diego2500garza/ColabTurtle, and Abstrqt/ColabTurtleClass.
150
-
151
-
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = ColabTurtlePlus
3
- version = 2.0.1
3
+ version = 2.0.2
4
4
  author = Larry Riddle
5
5
  author_email = lriddle@agnesscott.edu
6
6
  description = 'An HTML based Turtle implementation with classes for Google Colab and Jupyter Labs'
@@ -9,7 +9,7 @@ README = (HERE / "README.md").read_text()
9
9
 
10
10
  setup(
11
11
  name='ColabTurtlePlus',
12
- version='2.0.1',
12
+ version='2.0.2',
13
13
  packages=['ColabTurtlePlus'],
14
14
  url='https://github.com/mathriddle/ColabTurtlePlus',
15
15
  license='MIT',
File without changes