Files
chromebrew/packages/py3_unsupported_python.rb
Maximilian Downey Twiss 7325468db2 More python cleanups (#10452)
* Add unit tests for conflicting package properties

* Fix the reported issues
2024-09-11 10:36:58 -04:00

17 lines
457 B
Ruby

require 'buildsystems/pip'
class Py3_unsupported_python < Pip
description 'This package can be used as a conditional dependency to indicate lack of support for particular versions of Python.'
homepage 'https://github.com/ntessore/unsupported-python'
version '1.0.0-py3.12'
license 'GPL-3+'
compatibility 'all'
source_url 'SKIP'
depends_on 'python3' => :build
no_compile_needed
pre_configure_options 'ALLOW_UNSUPPORTED_PYTHON=3.12'
end