Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Backports 0.19.1 #33966

Merged
merged 27 commits into from
Feb 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
09ed3b0
Set version to 0.19.1.dev0
haampie Feb 7, 2023
edd62c8
Revert "Hotfix/namespace (#33870)"
haampie Feb 7, 2023
3c3b4df
docs: fix typo in multiple build systems
haampie Nov 17, 2022
204b45f
docs: fix typo (#33926)
michaelkuhn Nov 16, 2022
0e0e2c0
Fix incorrect timer (#33900)
haampie Nov 15, 2022
9c4d70b
Fixup: start the timer before the phase (#33917)
haampie Nov 15, 2022
8cfc071
Fix a bug/typo in a config_values.py fixture (#33886)
alalazo Nov 14, 2022
1b46446
uninstall: fix accidental cubic complexity (#34005)
haampie Nov 21, 2022
9f8266a
ci: restore ability to reproduce gitlab job failures (#33953)
scottwittenburg Nov 21, 2022
dca74e6
Fix combine_phase_logs text encoding issues (#34657)
haampie Dec 22, 2022
45cfd43
Improve error message for requirements (#33988)
alalazo Nov 18, 2022
0488714
PackageBase should not define builder legacy attributes (#33942)
greenc-FNAL Nov 18, 2022
c7ad46c
scons: fix signature for `install_args` (#34481)
alalazo Dec 13, 2022
d66d7ba
Forward lookup of the "run_tests" attribute (#34531)
alalazo Dec 15, 2022
d88c13d
Use a module-like object to propagate changes in the MRO, when settin…
alalazo Nov 28, 2022
a479f17
Propagate exceptions from Spack python console (#34547)
alalazo Dec 15, 2022
6530e63
docs: remove monitors and analyzers (#34358)
tgamblin Dec 22, 2022
6db65a4
FileCache: Delete the new cache file on exception (#34623)
blue42u Jan 10, 2023
c994916
spack mirror create takes local paths only (#34992)
haampie Jan 18, 2023
bb76195
disable flake warnings for unused imports of types
haampie Jan 18, 2023
039b59b
Bug fix for duplicate rpath errors on macOS when creating build cache…
climbfuji Jan 18, 2023
66bca6a
no python 3.6 anymore on ubuntu 22.04 in relevant setup action?
haampie Jan 18, 2023
c067ef2
buildcache create: make "file exists" less verbose (#35019)
haampie Jan 19, 2023
7224fc1
fix libtool filter for Fujitsu compilers (#34916)
ggouaillardet Jan 16, 2023
3cd689b
Fix path handling in prefix inspections (#35318)
matz-e Feb 7, 2023
ab1419c
e4s: disable mac stack due to binary relocation issue#32571 (#34560)
eugeneswalker Dec 17, 2022
dd788ba
Set version to 0.19.1
haampie Feb 7, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ concurrency:
jobs:
# Run unit tests with different configurations on linux
ubuntu:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ['2.7', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
Expand Down
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
# v0.19.1 (2023-02-07)

### Spack Bugfixes

* `buildcache create`: make "file exists" less verbose (#35019)
* `spack mirror create`: don't change paths to urls (#34992)
* Improve error message for requirements (#33988)
* uninstall: fix accidental cubic complexity (#34005)
* scons: fix signature for `install_args` (#34481)
* Fix `combine_phase_logs` text encoding issues (#34657)
* Use a module-like object to propagate changes in the MRO, when setting build env (#34059)
* PackageBase should not define builder legacy attributes (#33942)
* Forward lookup of the "run_tests" attribute (#34531)
* Bugfix for timers (#33917, #33900)
* Fix path handling in prefix inspections (#35318)
* Fix libtool filter for Fujitsu compilers (#34916)
* Bug fix for duplicate rpath errors on macOS when creating build caches (#34375)
* FileCache: delete the new cache file on exception (#34623)
* Propagate exceptions from Spack python console (#34547)
* Tests: Fix a bug/typo in a `config_values.py` fixture (#33886)
* Various CI fixes (#33953, #34560, #34560)
* Docs: remove monitors and analyzers, typos (#34358, #33926)
* bump release version for tutorial command (#33859)


# v0.19.0 (2022-11-11)

`v0.19.0` is a major feature release.
Expand Down
162 changes: 0 additions & 162 deletions lib/spack/docs/analyze.rst

This file was deleted.

4 changes: 2 additions & 2 deletions lib/spack/docs/basic_usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1244,8 +1244,8 @@ For example, for the ``stackstart`` variant:

.. code-block:: sh

mpileaks stackstart=4 # variant will be propagated to dependencies
mpileaks stackstart==4 # only mpileaks will have this variant value
mpileaks stackstart==4 # variant will be propagated to dependencies
mpileaks stackstart=4 # only mpileaks will have this variant value

^^^^^^^^^^^^^^
Compiler Flags
Expand Down
7 changes: 0 additions & 7 deletions lib/spack/docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ or refer to the full manual below.
build_settings
environments
containers
monitoring
mirrors
module_file_support
repositories
Expand All @@ -78,12 +77,6 @@ or refer to the full manual below.
extensions
pipelines

.. toctree::
:maxdepth: 2
:caption: Research

analyze

.. toctree::
:maxdepth: 2
:caption: Contributing
Expand Down
Loading