Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: bellingcat/auto-archiver
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.11.6
Choose a base ref
...
head repository: bellingcat/auto-archiver
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.12.0
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Aug 21, 2024

  1. closes #146

    msramalho committed Aug 21, 2024
    Copy the full SHA
    11c3288 View commit details
  2. v0.12.0 bump

    msramalho committed Aug 21, 2024
    Copy the full SHA
    b166d57 View commit details
Showing with 4 additions and 4 deletions.
  1. +1 −1 README.md
  2. +1 −1 setup.cfg
  3. +2 −2 src/auto_archiver/version.py
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -47,7 +47,7 @@ Docker works like a virtual machine running inside your computer, it isolates ev

<details><summary><code>Python package instructions</code></summary>

1. make sure you have python 3.8 or higher installed
1. make sure you have python 3.10 or higher installed
2. install the package `pip/pipenv/conda install auto-archiver`
3. test it's installed with `auto-archiver --help`
4. run it with your orchestration file and pass any flags you want in the command line `auto-archiver --config secrets/orchestration.yaml` if your orchestration file is inside a `secrets/`, which we advise
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ package_dir=
=src
packages=find:
find_packages=true
python_requires = >=3.8
python_requires = >=3.10

[options.package_data]
* = *.html
4 changes: 2 additions & 2 deletions src/auto_archiver/version.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@

_MAJOR = "0"
_MINOR = "11"
_MINOR = "12"
# On main and in a nightly release the patch should be one ahead of the last
# released build.
_PATCH = "6"
_PATCH = "0"
# This is mainly for nightly builds which have the suffix ".dev$DATE". See
# https://semver.org/#is-v123-a-semantic-version for the semantics.
_SUFFIX = ""