mumuki-python-runner 1.8.2 → 1.9.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1699ae67a23fd927d959d11b67c4dd207a4fec5154b177f30a90289a9ef21df3
4
- data.tar.gz: 43de189d35459491ba444eccfe14f259802e4ac2bfd9fbd9f80d223fc62bc7d7
3
+ metadata.gz: c4d71782cc6a4bb668ebd27663806c9e71b4286064d2b4229cd1b506fc940298
4
+ data.tar.gz: 65489c77da9b7792c91b03675cc64c357667fa0c2fd875e5a271d46b5be798e3
5
5
  SHA512:
6
- metadata.gz: 9d228f450cac70734257c24dea6a0c47865dd0df166a4ea823d01494b75c592410852fcf7ac0c6fa355b778cc4fafcdcfa3fe9d6589e1568ee4cf0ff54e727f1
7
- data.tar.gz: e4c330e7545fa34c3d2cd5ffabef570cc9acf9af4b075c5be58fc071dacb94aac578488fe872ee348203618e971c535f1852f9a9686ed1eb8f6c0bfc4ba29e83
6
+ metadata.gz: 31edbca36fcfd89180a4228c3e3c5f8bf715ede959697d906b25c8391efabec4c609dd3264bf2c38213fca1e0770d187256cf527cf992b0ef586af0bba03dfbe
7
+ data.tar.gz: ae718c4c3119f79d96f00480418e9d2d1eaf2ae42bc2f9083de2a602719a6c9b30a4c00da8aeaf2c600e86db3f68f7bb4db54ca74dc21aef4ae00e138e3c43ef
@@ -16,8 +16,13 @@ class Test(unittest.TestCase):
16
16
  def test_description_example(self):
17
17
  self.assertTrue(True)
18
18
  python
19
- }}
19
+ },
20
+ libraries: libraries,
21
+ }.compact
20
22
  end
21
23
 
22
24
  required :version
25
+
26
+ def libraries
27
+ end
23
28
  end
data/lib/base/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
 
2
2
  module BasePythonVersionHook
3
- VERSION = '1.8.2'
3
+ VERSION = '1.9.0'
4
4
  end
@@ -3,7 +3,7 @@ require_relative './base'
3
3
  def reload_python2_runner!
4
4
  Mumukit.runner_name = 'python'
5
5
  Mumukit.configure do |config|
6
- config.docker_image = 'mumuki/mumuki-python2-worker:0.1'
6
+ config.docker_image = 'mumuki/mumuki-python2-worker:0.2'
7
7
  # comment type should be Mumukit::Directives::CommentType::Ruby, but it is
8
8
  # Mumukit::Directives::CommentType::Cpp for backward compatibility
9
9
  config.stateful = true
@@ -2,5 +2,8 @@ class Python3MetadataHook < BasePythonMetadataHook
2
2
  def version
3
3
  '3.7.3'
4
4
  end
5
- end
6
5
 
6
+ def libraries
7
+ {pandas: '1.3.3'}
8
+ end
9
+ end
@@ -3,7 +3,7 @@ require_relative './base'
3
3
  def reload_python3_runner!
4
4
  Mumukit.runner_name = 'python3'
5
5
  Mumukit.configure do |config|
6
- config.docker_image = 'mumuki/mumuki-python3-worker:0.1'
6
+ config.docker_image = 'mumuki/mumuki-python3-worker:0.3'
7
7
  config.comment_type = Mumukit::Directives::CommentType::Ruby
8
8
  config.structured = true
9
9
  config.stateful = true
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mumuki-python-runner
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.2
4
+ version: 1.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Franco Leonardo Bulgarelli
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-06 00:00:00.000000000 Z
11
+ date: 2022-07-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mumukit