diff --git a/.github/workflows/build_desktop.yml b/.github/workflows/build_desktop.yml index 81784fe5..df2da3ea 100644 --- a/.github/workflows/build_desktop.yml +++ b/.github/workflows/build_desktop.yml @@ -18,7 +18,7 @@ jobs: strategy: matrix: include: - - os: ubuntu-latest + - os: ubuntu-20.04 extension: deb - os: macos-latest extension: dmg @@ -82,12 +82,12 @@ jobs: "dist/dmg/" - uses: ruby/setup-ruby@v1 - if: matrix.os == 'ubuntu-latest' + if: matrix.os == 'ubuntu-20.04' with: ruby-version: '3.0' - name: 🐧 Create Debian Package - if: matrix.os == 'ubuntu-latest' + if: matrix.os == 'ubuntu-20.04' shell: bash run: | # Install Debian Packager diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 845f2d62..21792f51 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -21,7 +21,7 @@ on: jobs: publish: name: Publish Python Package to PyPI - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v3 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 641c280e..546f13f5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -70,7 +70,7 @@ jobs: strategy: matrix: include: - - os: ubuntu-latest + - os: ubuntu-20.04 extension: deb - os: macos-latest extension: dmg @@ -133,11 +133,11 @@ jobs: "dist/dmg/" - uses: ruby/setup-ruby@v1 - if: matrix.os == 'ubuntu-latest' + if: matrix.os == 'ubuntu-20.04' with: ruby-version: '3.0' - name: 🐧 Create Debian Package - if: matrix.os == 'ubuntu-latest' + if: matrix.os == 'ubuntu-20.04' shell: bash env: DEBIAN_PACKAGE_VERSION: ${{ inputs.version }} diff --git a/pyproject.toml b/pyproject.toml index 42c4878e..8b0b45d5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,7 +37,7 @@ classifiers = [ "Topic :: Text Processing :: Linguistic", ] dependencies = [ - "dateparser == 1.1.1", + "dateparser >= 1.1.1", "defusedxml == 0.7.1", "fastapi == 0.77.1", "jinja2 == 3.1.2",