• Home
  • Raw
  • Download

Lines Matching +full:brotli +full:- +full:dev

51 # --with-cython/--without-cython options override environment variables
52 opt_with_cython = {"--with-cython"}.intersection(sys.argv)
53 opt_without_cython = {"--without-cython"}.intersection(sys.argv)
56 "error: the options '--with-cython' and '--without-cython' are "
60 sys.argv.remove("--with-cython")
63 sys.argv.remove("--without-cython")
96 # read/write XML files (faster/safer than built-in ElementTree)
103 "brotli >= 1.0.1; platform_python_implementation == 'CPython'",
108 # of the Unicode Character Database instead of the built-in unicodedata
118 # use pure-python alternative on pypy
141 "skia-pathops >= 0.5.0",
155 "Development Status :: 5 - Production/Stable",
179 with io.open("README.rst", "r", encoding="utf-8") as readme:
182 with io.open("NEWS.rst", "r", encoding="utf-8") as changelog:
212 Firstly, the pre-release '.devN' suffix is dropped to signal that this is
213 a stable release. If '--major' or '--minor' options are passed, the
215 for backward-incompatible API changes, while minor is used when adding
216 new backward-compatible functionalities. No options imply 'patch' or bug-fix
220 the new version string and the current 'YYYY-MM-DD' date.
223 --sign option, the tag is GPG-signed with the user's default key.
226 pre-release suffix '.dev0' is appended to mark the opening of a new
230 - http://semver.org/
231 - https://www.python.org/dev/peps/pep-0440/
232 - https://github.com/c4urself/bump2version
239 ("minor", None, "bump the second digit (new backward-compatible features)"),
240 ("sign", "s", "make a GPG-signed tag, using the default key"),
241 ("allow-dirty", None, "don't abort if working directory is dirty"),
245 version_RE = re.compile(r"^[0-9]+\.[0-9]+")
246 date_fmt = "%Y-%m-%d"
266 raise DistutilsOptionError("--major/--minor are mutually exclusive")
277 log.info("stripping pre-release suffix")
286 log.info("bumping 'patch' version and pre-release suffix")
303 sp.check_call(["git", "commit", "-m", msg], stdout=sp.PIPE)
315 tag_opt = "-s" if sign else "-a"
317 proc = sp.Popen(["git", "tag", tag_opt, "-F", "-", tag_name], stdin=sp.PIPE)
320 proc.communicate(tag_message.encode("utf-8"))
326 new computed version string (cf. 'bumpversion --help' for more info)
331 (["--verbose"] if self.verbose > 1 else [])
332 + (["--dry-run"] if self.dry_run else [])
333 + (["--allow-dirty"] if (allow_dirty or self.allow_dirty) else [])
334 + (["--commit"] if commit else ["--no-commit"])
335 + (["--message", message] if message is not None else [])
336 + ["--list", part]
343 last_line = out.getvalue().splitlines()[-1]
357 with io.open(self.changelog_name, "r+", encoding="utf-8") as f:
369 f.write(header + "\n" + "-" * len(header) + "\n\n" + content)
379 the --install-data option of 'setup.py install' sub-command.
390 $ FONTTOOLS_MANPATH="man" pip install -v .
393 copying Doc/man/ttx.1 -> /usr/man/man1
397 package (otherwise setup.py is not run), by using the --no-binary option:
399 $ FONTTOOLS_MANPATH="man" pip install --no-binary=fonttools fonttools