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: gisce/autoworker
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.10.0
Choose a base ref
...
head repository: gisce/autoworker
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 7 commits
  • 2 files changed
  • 1 contributor

Commits on Aug 4, 2023

  1. Verified

    This commit was signed with the committer’s verified signature.
    sagikazarmark Márk Sági-Kazár
    Copy the full SHA
    714e993 View commit details
  2. Bump to v0.10.0-rc1

    polsala committed Aug 4, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    sagikazarmark Márk Sági-Kazár
    Copy the full SHA
    a1fc4a1 View commit details
  3. Merge pull request #20 from gisce/gix_max_procs

    Fix max procs
    polsala authored Aug 4, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    sagikazarmark Márk Sági-Kazár
    Copy the full SHA
    827860d View commit details
  4. Bump to v0.10.1

    polsala committed Aug 4, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    sagikazarmark Márk Sági-Kazár
    Copy the full SHA
    2d00e56 View commit details

Commits on Aug 10, 2023

  1. Copy the full SHA
    49cd387 View commit details
  2. Merge pull request #21 from gisce/restore_max_procs

    Restore MAX_PROCS formula but with integer cast
    polsala authored Aug 10, 2023
    Copy the full SHA
    6c7361e View commit details
  3. Bump to v0.10.2

    polsala committed Aug 10, 2023
    Copy the full SHA
    a91d8ce View commit details
Showing with 2 additions and 2 deletions.
  1. +1 −1 autoworker/__init__.py
  2. +1 −1 setup.py
2 changes: 1 addition & 1 deletion autoworker/__init__.py
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@
from osconf import config_from_environment


MAX_PROCS = max(mp.cpu_count() - os.getloadavg()[0], 0) + 1
MAX_PROCS = int(max(mp.cpu_count() - os.getloadavg()[0], 0) + 1)
"""Number of maximum procs we can run
"""

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@

setup(
name='autoworker',
version='0.10.0',
version='0.10.2',
packages=find_packages(exclude=['spec']),
url='https://github.com/gisce/autoworker',
license='MIT',