bioversions 0.5.181__py3-none-any.whl → 0.5.183__py3-none-any.whl

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.
@@ -25,7 +25,7 @@ class MSigDBGetter(Getter):
25
25
 
26
26
  x = soup.find(text="Current Version")
27
27
  paragraph = x.parent.find_next_sibling("p")
28
- version = paragraph.text.strip().split()[2][len("v"):-len(".Hs")]
28
+ version = paragraph.text.strip().split()[2][len("v") : -len(".Hs")]
29
29
  return version
30
30
 
31
31
 
@@ -16,8 +16,8 @@ __all__ = [
16
16
  class SwissLipidGetter(Getter):
17
17
  """A getter for SwissLipids."""
18
18
 
19
- bioregistry_id = "swisslipid"
20
- name = "SwissLipid"
19
+ bioregistry_id = "slm"
20
+ name = "SwissLipids"
21
21
  version_type = VersionType.date
22
22
 
23
23
  def get(self):
@@ -3,7 +3,6 @@
3
3
  """A getter for ZFIN."""
4
4
 
5
5
  from datetime import datetime
6
- from typing import Mapping
7
6
 
8
7
  from bioversions.utils import Getter, VersionType, get_soup
9
8
 
@@ -21,7 +20,7 @@ class ZfinGetter(Getter):
21
20
  name = "Zebrafish Information Network"
22
21
  version_type = VersionType.date
23
22
 
24
- def get(self) -> Mapping[str, str]:
23
+ def get(self):
25
24
  """Get the latest ZFIN version number."""
26
25
  soup = get_soup(URL)
27
26
  header = soup.find("h2")
bioversions/version.py CHANGED
@@ -9,7 +9,7 @@ __all__ = [
9
9
  "VERSION",
10
10
  ]
11
11
 
12
- VERSION = "0.5.181"
12
+ VERSION = "0.5.183"
13
13
 
14
14
 
15
15
  def get_git_hash() -> str:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: bioversions
3
- Version: 0.5.181
3
+ Version: 0.5.183
4
4
  Summary: What's the current version for each biological database?
5
5
  Home-page: https://github.com/biopragmatics/bioversions
6
6
  Download-URL: https://github.com/biopragmatics/bioversions/releases
@@ -16,18 +16,17 @@ Classifier: Environment :: Console
16
16
  Classifier: License :: OSI Approved :: MIT License
17
17
  Classifier: Operating System :: OS Independent
18
18
  Classifier: Programming Language :: Python
19
- Classifier: Programming Language :: Python :: 3.7
20
19
  Classifier: Programming Language :: Python :: 3.8
21
20
  Classifier: Programming Language :: Python :: 3.9
22
21
  Classifier: Programming Language :: Python :: 3.10
23
22
  Classifier: Programming Language :: Python :: 3 :: Only
24
- Requires-Python: >=3.7
23
+ Requires-Python: >=3.8
25
24
  Description-Content-Type: text/markdown
26
25
  License-File: LICENSE
27
26
  Requires-Dist: requests
28
27
  Requires-Dist: requests-ftp
29
28
  Requires-Dist: beautifulsoup4
30
- Requires-Dist: cachier (<2.2.0)
29
+ Requires-Dist: cachier (>=2.2.1)
31
30
  Requires-Dist: pystow (>=0.1.0)
32
31
  Requires-Dist: click
33
32
  Requires-Dist: click-default-group
@@ -5,7 +5,7 @@ bioversions/cli.py,sha256=vFwSyuWWFly07g_9hcd_70pwKV7U-OZPqRWhn4FxIjU,1589
5
5
  bioversions/slack_client.py,sha256=42kl4TbjtXimVRULcBfe8i3pdJLScEPvJr1vw72tv-4,1271
6
6
  bioversions/twitter_client.py,sha256=TQhsdp6avlzoZLoZlndJlwsYhIYI-uabehZJ1W1mNuY,1353
7
7
  bioversions/utils.py,sha256=I_wZZJjfEXnQjSYGLPo8IIvcorll00KCLwTdgqbxpBY,9712
8
- bioversions/version.py,sha256=pKZoJVeEZbEecsdjZjGDa0YdJ0zVZlMeGHnfFoqnnQE,645
8
+ bioversions/version.py,sha256=SxtE9t4D78nO0zjuTXTNy5lD1Z1jYIAfiMHKQfpp8e0,645
9
9
  bioversions/wsgi.py,sha256=Z1HYFmnrWKNGwHq4R4DRfBuLzAEAAZ5UfHjvJUpnDfs,826
10
10
  bioversions/resources/__init__.py,sha256=0E1yGGT5SztSGEa30Tai4wCUki4nqfynqCSNAvjzEOk,1173
11
11
  bioversions/resources/update.py,sha256=21LprPktMKXdFI7llKjn7gsAQq01TGSKFbWQEhhwDJ0,3215
@@ -38,7 +38,7 @@ bioversions/sources/kegg.py,sha256=E5gQWlRs3HbcXy0MY0-tyo7TBKQfkZ4GkYk5I789S30,8
38
38
  bioversions/sources/mesh.py,sha256=U3brzrzPjhzgSWxG2MILP-bqIgZpr62ns_izFnZzqe0,807
39
39
  bioversions/sources/mirbase.py,sha256=AU5rzLkxTTdK8-Ja_jA3JLNqdyY8A8Jrs0am2wgrJiQ,771
40
40
  bioversions/sources/moalmanac.py,sha256=HxrJmOzqVJiHn9FQKCbOlBPCvxBHst1DI420TYERCvU,774
41
- bioversions/sources/msigdb.py,sha256=69J5dDSoILnTdb6FvBm74beTkS0tTacMe88pVKDa5XU,801
41
+ bioversions/sources/msigdb.py,sha256=KGYZjjhqm0uUT0Wg_pb5kF9OVW33dgIh2r-yKMBqbWg,803
42
42
  bioversions/sources/ncit.py,sha256=ylubS3ntMyimaZDHFNFrjc2pkDfpyrBkhrl8Dq4duyQ,1064
43
43
  bioversions/sources/npass.py,sha256=-EL6Ej-23cdGKehn8nusP8LJ3z4oRX4ZPPDnjx_ItXQ,739
44
44
  bioversions/sources/obo.py,sha256=n2_Auh0ccu3WKOwq8JqFldzS8-KY0GVC1fReazPLr78,1735
@@ -56,16 +56,16 @@ bioversions/sources/rgd.py,sha256=x7Mks8qp_dE4xWkA7OQu4eM8__oPsr13M-bFd5otcoA,79
56
56
  bioversions/sources/rhea.py,sha256=ovqsunji0Y_OgocyMuQJYVjdFMFaVt1o1nSL8_boloo,885
57
57
  bioversions/sources/rxnorm.py,sha256=ocFtWX_xce9U4IeDxgGvZp5x02GETljLyW9oza3tkNw,1027
58
58
  bioversions/sources/sgd.py,sha256=xLZdpA0WBJVIkgwuLmosVpXo9WBeiqCAA8_4taSrLsA,1109
59
- bioversions/sources/slm.py,sha256=V3jH-2mubahofq-l0QZN4bZ64Nmo_KuweLS9fgNCuc0,715
59
+ bioversions/sources/slm.py,sha256=nttj-mrzwgosK-Vv3UVlyAI0EX1WkJRFBkGmkTnhdU0,709
60
60
  bioversions/sources/stringdb.py,sha256=6D3rcGGzdkgVOw4refJgjsorkyZuPswTYe4rNT4bQRQ,810
61
61
  bioversions/sources/umls.py,sha256=zLis6zZJi52jACqL7Kbkaru7MxKr5AhblZO2AR1tttM,677
62
62
  bioversions/sources/uniprot.py,sha256=_rootal_mrESkiXJh3udfr1UGrlzP7CQQIMsa35tycA,962
63
63
  bioversions/sources/unversioned.py,sha256=noHxGmy9cpVv5xegMHouBF6oCbW6CP1jpOeCVdE7Eak,78
64
64
  bioversions/sources/wikipathways.py,sha256=pJSHUNn_MHuibAY82VV2NXwwTfR5TzrLmamt7mgSzpw,754
65
- bioversions/sources/zfin.py,sha256=sWVSkF_i2qVT9MLMnlXsebqGLtgCGhsdhSJowN8AXOw,756
66
- bioversions-0.5.181.dist-info/LICENSE,sha256=GzLA83qaovFgoZWRYwaAmY-lkHZyDySJHU-YKE9NdVs,1076
67
- bioversions-0.5.181.dist-info/METADATA,sha256=C_rydLOxvggY36qrc2fK49fx-KZ5SriiSe79CrUo6f0,9425
68
- bioversions-0.5.181.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
69
- bioversions-0.5.181.dist-info/entry_points.txt,sha256=A3qrS-nvKNZPZWQbYlmsmiDTge524C4yR-arRJwdHls,53
70
- bioversions-0.5.181.dist-info/top_level.txt,sha256=0QO2OEUMchj5GSlWEFi0cvUpsm4b_uwuuvr6uSEmfY0,12
71
- bioversions-0.5.181.dist-info/RECORD,,
65
+ bioversions/sources/zfin.py,sha256=D7csziZ3UsW8dncm6XKA0t3x6XB4cFbG9PTYcT-g2bg,708
66
+ bioversions-0.5.183.dist-info/LICENSE,sha256=GzLA83qaovFgoZWRYwaAmY-lkHZyDySJHU-YKE9NdVs,1076
67
+ bioversions-0.5.183.dist-info/METADATA,sha256=o_7h5V7Z3veDpWlo0WAAh8p1mT6O2UKkIONinkHipLk,9376
68
+ bioversions-0.5.183.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
69
+ bioversions-0.5.183.dist-info/entry_points.txt,sha256=A3qrS-nvKNZPZWQbYlmsmiDTge524C4yR-arRJwdHls,53
70
+ bioversions-0.5.183.dist-info/top_level.txt,sha256=0QO2OEUMchj5GSlWEFi0cvUpsm4b_uwuuvr6uSEmfY0,12
71
+ bioversions-0.5.183.dist-info/RECORD,,