Changes in atelier
, rstgen
and sphinxfeed
¶
2024-11-15¶
inv mm
no longer specifies the version and project name when it runs
pybabel extract
.
2024-09-11¶
inv sdist
and inv release
both showed a list of published
versions. But the PyPI service “package_releases” has been deprecated for years
and is now being deactivated. That’s actually okay, we
simply don’t show the list of releases any more.
2024-07-20¶
inv mm
no longer uses the setup.py
file but the pybabel
command-line interface. The message_extractors keyword in setup.py
is
now ignored and inv mm
requires a file named
message_extractors.ini
. For background information see the Babel docs
about Working with Message Catalogs.
2024-06-11¶
inv install
no longer fails when the repository has no
requirements.txt
file.
New command inv pull
pulls the latest changes, including those from
upstream if there is one. Runs either “git pull” or “git fetch upstream” followed
by “git merge upstream/master”.
2024-04-19¶
Fixed #5562 (Sphinx warning “cannot cache unpickable configuration
value”). rstgen.sphinxconf.configure()
now sets
suppress_warnings
to ['config.cache', 'image.nonlocal_uri']
.
2024-04-16¶
New command-line option inv prep --verbose
. For temporary use in book
as part of #5542 (Two VAT doctests fail because generated VAT numbers
differ).
2024-03-14¶
per_project
caused an argh.assembling.ArgumentNameMappingError with
newer versions of argh
because there had been some breaking changes
2023-12-10¶
New variable default_branch
.
2023-03-14¶
It is now possible to have a README.rst
that is not getting
overwritten by inv bd
(more precisely by by inv readme
, which is
triggered by by inv bd
): when your long_description
starts with
"===="
, then inv readme
won’t care about overwriting your
README.rst
.
2023-01-15¶
New function rstgen.sphinxconf.sigal_image.parse_image_spec()
will be used
also by the [image] memo command in Lino.
2022-12-25¶
When specifying --start
or --after
to the inv prep
command, you must now give only the last part of the project name. Instead of
saying inv prep -a lino_book.projects.cosi5
you must now
say inv prep -a cosi5
.
2022-12-24¶
The sigal_image
directive has a new format “tiny”.
2022-12-10¶
atelier.invlib.tasks.run_in_demo_projects()
, when called with bare=True,
(inconsistently) returned None when there were no demo projects.
2022-10-30¶
Release to pypi: rstgen
.
2022-10-19¶
The inv test
command now calls doctest with
REPORT_ONLY_FIRST_FAILURE
.
2022-10-10¶
Fixed a bug that caused PosixPath has no attribute ‘format’
Release to pypi
2022-09-18¶
test_command
: now runs python -m unittest discover -s tests
only when a directory named tests
exists. Because under certain
circumstances (Python 3.10?) unittest discover
also searches the whole
PYTHONPATH
for a package named tests
and that’s not what we want
to happen.
2022-08-17¶
Release to PyPI: atelier
2022-08-10¶
2022-07-26¶
Fix NameError("name 'lng' is not defined")
Release to PyPI: rstgen
2022-07-14¶
The inv prep
command now runs less verbosely. It prints the output of
each subprocess only when it failed.
The inv install
command has a new command line interface.
2022-07-10¶
New attribute atelier.projects.Project.published
and a method
atelier.projects.Project.set_published()
.
Fixed #4558 (sphinxfeed links don’t work when use_dirhtml is true).
This also required changes in our branch of sphinxfeed
, which now depends
on rstgen
.
sigal_image
now uses height 10em instead of width 30% for specifying
the size of thumbnail images.
2022-06-09¶
Miscellaneous bugfixes and optimizations after 2022-05-24
Released atelier and rstgen to PyPI.
2022-05-24¶
Move some utility functions from atelier.utils
to rstgen.utils
(because we don’t want makehelp
on a Lino production site to depend on
atelier):
dict_py2
,
list_py2
,
tuple_py2
,
rmu
and sixprint
Release to PyPI.
Also move atelier.sphinxconf
to rstgen.sphinxconf
.
Release to PyPI.
2022-04-18¶
Add a new button template languages-button.html
for insipid theme.
Release to PyPI.
2022-03-14¶
Try a quick workaround for supporting language ‘et’ by modifying
docutils.languages.LanguageImporter.packages
(didn’t work).
Release to PyPI.
2022-03-13¶
The sigal_image
directive with format thumb
now sets the width of
the image to “30%” instead of “280pt”. Because “280pt” didn’t yield a good
result on a mobile device.
2022-02-08¶
Bugfix: The count
didn’t restart at 1 for each new document.
2022-01-26¶
New role count
.
Removed the link to source code of a module in the autodoc API (because in Sphinx 4.4 it caused warnings like …lino/lino/__init__.py:docstring of lino:25: WARNING: hardcoded link ‘…/master/lino/__init__.py’ could be replaced by an extlink (try using ‘(source lino/__init__.py)’ instead) )
Release to PyPI : atelier 1.1.41
2021-11-09¶
The refstothis
directive now supports multiple targets.
2021-11-02¶
New config setting multiple_blog_entries_per_day
.
New config setting rsync_command
.
2021-08-31¶
The inv pd
command now uses the –omit-dir-times option of rsync.
2021-07-21¶
Added a new command inv update-fixtures
and a new config key
fixtures_updater
.
2021-07-15¶
Added an option --batch
for inv release
.
2021-06-21¶
Added two new flags on inv install
of the form inv install --list
(which installs the required python packages and also list and writes them into
requirements-install.txt
) and inv install --list-only
(the later
is self explanatory).
2021-06-05¶
Release to PyPI : atelier 1.1.40
2021-06-04¶
Fixed a misbehaviour that caused atelier to fail with Sphinx 4: avoid extlinks with an empty url template.
2021-06-02¶
Bugfix: atelier.projects.Project.get_xconfig()
: ignored the hard-coded
default values for projects with a main_module that was installed from PyPI
(i.e. without a tasks.py
file).
Release to PyPI: atelier 1.1.39
2021-05-29¶
rstgen.sphinxconf.configure()
no longer imposes a hard-coded theme. When
you set html_theme
before calling configure
, then it fills default values to
html_theme_options
for four themes (insipid, alabaster, pydata and rtd).
The default value is insipid.
2021-05-28¶
Fix a packaging issue that caused sphinx build warnings “html_static_path entry ‘…/site-packages/atelier/sphinxconf/static’ does not exist” when atelier was not installed from source code.
Release to PyPI: atelier 1.1.38
2021-05-21¶
Miscellaneous changes since 2021-05-03 regarding the documentation framework. Add dependency to gitpython. See git history for details.
The rstgen.sphinxconf.configure()
now adds the ‘sphinx.ext.autodoc’ and
‘sphinx.ext.autosummary’ extensions only when the project’s SETUP_INFO
contains a ‘name’ key. It’s a good thing to avoid loading autodoc when it is not
needed, but this didn’t fix my problem.
Release to PyPI: atelier 1.1.37
2021-05-03¶
Release to PyPI: atelier 1.1.36
2021-05-01¶
The per_project
command is now packaged using entry_points
(no longer
using scripts
). One advantage is that it doesn’t break when atelier is
installed from a clone using pip install -e
and the version number
changes. The srcref_url
is no longer used.
Release to PyPI: atelier 1.1.35
Fix failure when public_url is unknown.
2021-04-28¶
Oops, the templates were not included in the 1.1.32 and 1.1.33 pip packages.
Release to PyPI: atelier 1.1.33 and 1.1.34
2021-04-27¶
New project setting make_docs_command
.
Release to PyPI: atelier 1.1.32
2021-04-25¶
Calling rstgen.sphinxconf.configure()
in a Sphinx conf.py
file
now also supports usage of selectable_languages
, and the insipid theme
is now activated.
Release to PyPI: atelier 1.1.31
2021-04-25¶
When selectable_languages
is given, inv bd
will now
automatically loop over the source directories. Removed the configuration
setting build_docs_command
because it is no longer needed.
The inv check
command now detects more inconsistencies.
2021-04-23¶
Release to pypi: atelier 1.1.30.
2021-04-12¶
Calling rstgen.sphinxconf.configure()
in a Sphinx conf.py
file
now also adds the project’s SETUP_INFO
to the html_context
.
2021-04-07¶
Calling rstgen.sphinxconf.configure()
in a Sphinx conf.py
file
now also sets atelier.current_project
. New project config option
selectable_languages
. Miscellaneous internal optimizations. New
experiemental command inv check
to detect certain types of configuration
errors.
2021-03-18¶
Bugfix: After creating a new blog entry with inv blog
, it didn’t touch
the year index file. Note that you still need to manually touch the file that
contains your blogger_latest
directive in order to have the new blog
entry get listed there.
2021-03-11¶
Added a new directive blogger_latest
in
rstgen.sphinxconf.blog
.
Moved from GitHub to GitLab. New project home page is https://gitlab.com/lino-framework/atelier
Release version 1.1.29 to PyPI.
2021-03-07¶
Fixed AttributeError: ‘PosixPath’ object has no attribute ‘set_times’.
2021-03-06¶
atelier.test.make_docs_suite()
now supports multiple exclude patterns.
rstgen
now also uses pathlib
instead of unipath
.
2021-03-03¶
New configuration setting build_docs_command
.
New directive cards
.
Change unipath to pathlib. Remove unipath dependency.
Improve support for long language codes.
Release version 1.1.28 to PyPI.
2021-01-18¶
New command-line option –dirty for per_project
to show only projects
with a dirty git status.
The inv clean
command no longer asks for every individual .pyc file,
just one OK to remove <count> __pycache__ directories?
- Old changes in
atelier
- 2020-12-07
- 2020-09-24
- 2020-07-20
- 2020-06-07
- 2020-04-08
- 2019-12-03
- 2019-11-27
- 2019-11-26
- 2019-11-25
- 2019-11-22
- 2019-11-20
- 2019-11-19
- 2019-11-15
- 2019-11-11
- 2019-11-07
- 2019-10-03
- 2019-10-02
- 2019-08-09
- 2019-08-05
- 2019-08-02
- 2019-08-01
- 2019-07-29
- 2019-07-20
- 2019-07-01
- 2019-06-07
- 2019-03-07
- 2019-03-06
- 2019-02-12
- 2019-01-21
- Version 1.1.12 (released 2018-11-24)
- Version 1.1.11 (released 2018-11-05)
- Version 1.1.10 (released 2018-10-29)
- Version 1.1.9 (released 2018-09-19)
- Version 1.1.8 (released 2018-05-21)
- Version 1.1.7 (released 2018-05-04)
- Version 1.1.6 (released 2018-05-02)
- Version 1.1.5 (released 2018-04-30)
- Version 1.0.14 (released 2018-03-15)
- Version 1.0.13 (released 2017-12-17)
- Version 1.0.12 (released 2017-10-11)
- Version 1.0.11 (released 2017-09-26)
- Version 1.0.10 (released 2017-09-22)
- Version 1.0.9 (released 2017-09-22)
- Version 1.0.8 (released 2017-09-20)
- Version 1.0.7 (released 2017-09-12)
- Version 1.0.6 (released 2017-06-07)
- Version 1.0.5 (released 2017-02-16)
- Version 1.0.4 (released 2016-10-26)
- Version 1.0.3 (released 2016-08-31)
- Version 1.0.2 (released 2016-07-16)
- Version 1.0.1 (released 2016-06-19)
- Version 1.0.0 (released 2016-03-25)
- Version 0.0.20 (released 2016-03-24)
- Version 0.0.19 (released 2016-03-08)
- Version 0.0.18 (released 2016-03-04)
- Version 0.0.17 (released 2016-02-15)
- Version 0.0.16 (released 2015-12-04)
- Version 0.0.15 (released 2015-06-10)
- Version 0.0.14 (released 2015-03-15)
- Version 0.0.13 (released 2015-02-14)
- Version 0.0.12 (released 2015-02-02)
- Version 0.0.11 (released 2015-01-29)
- Version 0.0.10 (released 2014-12-29)
- Version 0.0.9 (released 2014-12-26)
- Version 0.0.8 (released 2014-12-26)
- Version 0.0.7 (released 2014-12-22)
- Version 0.0.6 (released 2014-12-22)
- Version 0.0.5 (released 20141207)
- Version 0.0.3
- Version 0.0.2 (released 2013-05-05)
- Version 0.0.1 (released 2013-04-22)