Skip to content

Commit

Permalink
Merge pull request #207 from treyhunner/bump-packages
Browse files Browse the repository at this point in the history
Bump lots of package versions
  • Loading branch information
treyhunner committed May 10, 2024
2 parents fe9ed38 + 9c98594 commit 8a3243a
Show file tree
Hide file tree
Showing 8 changed files with 1,001 additions and 1,001 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/constraints.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pip==22.0.3
nox==2022.8.7
nox-poetry==1.0.1
poetry==1.1.12
virtualenv==20.13.1
pip==23.0.1
nox==2022.11.21
nox-poetry==1.0.3
poetry==1.7.1
virtualenv==20.20.0
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3.3.0

- name: Run Labeler
uses: crazy-max/ghaction-github-labeler@v3.1.1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3.3.0
with:
fetch-depth: 2

- name: Set up Python
uses: actions/setup-python@v2.3.2
uses: actions/setup-python@v4.5.0
with:
python-version: "3.10"

Expand Down
16 changes: 7 additions & 9 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,9 @@ jobs:
- { python: "3.10", os: "ubuntu-latest", session: "mypy" }
- { python: "3.9", os: "ubuntu-latest", session: "mypy" }
- { python: "3.8", os: "ubuntu-latest", session: "mypy" }
- { python: "3.7", os: "ubuntu-latest", session: "mypy" }
- { python: "3.10", os: "ubuntu-latest", session: "tests" }
- { python: "3.9", os: "ubuntu-latest", session: "tests" }
- { python: "3.8", os: "ubuntu-latest", session: "tests" }
- { python: "3.7", os: "ubuntu-latest", session: "tests" }
- { python: "3.10", os: "windows-latest", session: "tests" }
- { python: "3.10", os: "macos-latest", session: "tests" }
- { python: "3.10", os: "ubuntu-latest", session: "typeguard" }
Expand All @@ -35,10 +33,10 @@ jobs:

steps:
- name: Check out the repository
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3.3.0

- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v2.3.2
uses: actions/setup-python@v4.5.0
with:
python-version: ${{ matrix.python }}

Expand Down Expand Up @@ -97,14 +95,14 @@ jobs:
- name: Upload coverage data
if: always() && matrix.session == 'tests'
uses: "actions/upload-artifact@v2.3.1"
uses: "actions/upload-artifact@v3.1.2"
with:
name: coverage-data
path: ".coverage.*"

- name: Upload documentation
if: matrix.session == 'docs-build'
uses: actions/upload-artifact@v2.3.1
uses: actions/upload-artifact@v3.1.2
with:
name: docs
path: docs/_build
Expand All @@ -114,10 +112,10 @@ jobs:
needs: tests
steps:
- name: Check out the repository
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3.3.0

- name: Set up Python
uses: actions/setup-python@v2.3.2
uses: actions/setup-python@v4.5.0
with:
python-version: "3.10"

Expand All @@ -138,7 +136,7 @@ jobs:
nox --version
- name: Download coverage data
uses: actions/download-artifact@v2.1.0
uses: actions/download-artifact@v3.0.2
with:
name: coverage-data

Expand Down
6 changes: 3 additions & 3 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
furo==2022.1.2
sphinx==4.4.0
sphinx-click==3.1.0
furo==2022.12.7
sphinx==6.1.3
sphinx-click==4.4.0
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

package = "countdown"
newer_python_versions = ["3.10", "3.9"]
python_versions = ["3.10", "3.9", "3.8", "3.7"]
python_versions = ["3.10", "3.9", "3.8"]
nox.needs_version = ">= 2021.6.6"
nox.options.sessions = (
"pre-commit",
Expand Down
1,954 changes: 978 additions & 976 deletions poetry.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ classifiers = [
Changelog = "https://github.com/treyhunner/countdown-cli/releases"

[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"
click = "^8.0.1"

[tool.poetry.dev-dependencies]
pytest = "^7.0.0"
coverage = {extras = ["toml"], version = "^6.2"}
safety = "^1.10.3"
pytest = "^7.2.1"
coverage = {extras = ["toml"], version = "^7.2"}
safety = "^2.3.5"
mypy = "^0.931"
typeguard = "^2.13.3"
xdoctest = {extras = ["colors"], version = "^0.15.10"}
Expand Down

0 comments on commit 8a3243a

Please sign in to comment.