Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

node-semver

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-semver

port of node-semver

  • 0.9.0
  • PyPI
  • Socket score

Maintainers
1

node-semver

.. image:: https://github.com/podhmo/python-node-semver/actions/workflows/python-package.yml/badge.svg :target: https://github.com/podhmo/python-node-semver/actions/workflows/python-package.yml

python version of node-semver

install

.. code-block:: console

pip install node-semver

examples

.. code-block:: python

from semver import max_satisfying

versions = ['1.2.3', '1.2.4', '1.2.5', '1.2.6', '2.0.1'] range_ = '~1.2.3' assert max_satisfying(versions, range_, loose=False) == '1.2.6'

versions = ['1.1.0', '1.2.0', '1.2.1', '1.3.0', '2.0.0b1', '2.0.0b2', '2.0.0b3', '2.0.0', '2.1.0'] range_ = '~2.0.0' assert max_satisfying(versions, range_, loose=True) == '2.0.0'

try: (max_satisfying(versions, range_, loose=False) == '2.0.0') except ValueError as e: assert e.args[0] == "Invalid Version: 2.0.0b1"

versions = ['1.2.3', '1.2.4', '1.2.5', '1.2.6-pre.1', '2.0.1'] range_ = '~1.2.3' assert max_satisfying(versions, range_, loose=False, include_prerelease=True) == '1.2.6-pre.1' assert max_satisfying(versions, range_, loose=False, include_prerelease=False) == '1.2.5'

0.9.0

  • RENAME MODULE semver -> nodesemver (#39)
  • pre release range fix (#40)

0.8.1

  • fix erroneous parsing of $ component version numbers (#44)

0.8.0

  • handle 4-digit version correctly (#35)

0.7.0

  • include tests in source distributions (#31)

0.6.0

  • more strict error handling (InvalidTypeIncluded is added)

0.5.1

  • bug fix

0.5.0

  • include_prerelease option is added

0.4.2

  • fix bug for support 4-digit (handling prelease and build)

0.4.0

  • suport 4-digit version (e.g. x.y.z.a)

0.3.0

  • drop python2.x support
  • bug fix, Add sort key function #14

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc