Skip to content

Command-line tool for checking Python compatibility

License

Notifications You must be signed in to change notification settings

DarkLight1337/pycm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python Compatibility Matrix

pycm is a command-line tool for checking which versions of Python are supported by a given package.

Installation

Requirements

Procedure

  1. Run python -m pip install git+https://github.com/DarkLight1337/pycm.git to install the package from this repository.

Usage

Syntax

pycm <package> --python=<versions>

Example

Show the versions of TensorFlow that can be used with Python 3.8-3.11:

> pycm tensorflow --python=3.8,3.9,3.10,3.11
tensorflow (→) 2.2.3 2.3.4 2.4.4 2.5.3 2.6.5 2.7.4 2.8.4 2.9.3 2.10.1 2.11.1 2.12.1 2.13.1 2.14.1 2.15.1 2.16.1
Python (↓)
3.8                Y     Y     Y     Y     Y     Y     Y     Y      Y      Y      Y      Y
3.9                                  Y     Y     Y     Y     Y      Y      Y      Y      Y      Y      Y      Y
3.10                                                   Y     Y      Y      Y      Y      Y      Y      Y      Y
3.11                                                                              Y      Y      Y      Y      Y

(You can cross-check this table against the official compatibility matrix.)

Development

Requirements

Setup

  1. Clone this repository to your machine.
  2. Run poetry lock --no-update && poetry install --with dev to setup the Python enviroment.

Lint

  1. Setup the development environment.
  2. Run poetry run deptry . && poetry run ruff check . && poetry run pyright . to lint the code.

Test

  1. Setup the development environment.
  2. Run poetry run -- pytest to test the code and output the coverage report.

About

Command-line tool for checking Python compatibility

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages