Skip to content

Commit

Permalink
Merge pull request #222 from fyntex/develop
Browse files Browse the repository at this point in the history
Deploy release v0.6.0
  • Loading branch information
fpinto-cdd authored Mar 14, 2023
2 parents f426fbd + f4c02a4 commit 2584b35
Show file tree
Hide file tree
Showing 13 changed files with 18 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.5.0
current_version = 0.6.0
commit = True
tag = False

Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ jobs:
strategy:
matrix:
python_version:
- "3.7.15"
- "3.8.13"
- "3.9.16"
- "3.10.9"
Expand All @@ -46,7 +45,7 @@ jobs:
run: make python-virtualenv PYTHON_VIRTUALENV_DIR="venv"

- name: Restoring/Saving Cache
uses: actions/cache@v3.2.5
uses: actions/cache@v3.3.1
with:
path: "venv"
key: py-v1-deps-${{ runner.os }}-${{ matrix.python_version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements_test.txt') }}-${{ hashFiles('requirements_release.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }}
Expand All @@ -70,7 +69,6 @@ jobs:
strategy:
matrix:
python_version:
- "3.7.15"
- "3.8.13"
- "3.9.16"
- "3.10.9"
Expand Down Expand Up @@ -103,7 +101,7 @@ jobs:
python-version: "${{ matrix.python_version }}"

- name: Restoring/Saving Cache
uses: actions/cache@v3.2.5
uses: actions/cache@v3.3.1
with:
path: "venv"
key: py-v1-deps-${{ runner.os }}-${{ matrix.python_version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements_test.txt') }}-${{ hashFiles('requirements_release.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
python-version: "3.10.9"

- name: Restoring/Saving Cache
uses: actions/cache@v3.2.5
uses: actions/cache@v3.3.1
with:
path: "venv"
key: py-v1-deps-${{ runner.os }}-${{ steps.set_up_python.outputs.python-version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements_test.txt') }}-${{ hashFiles('requirements_release.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
run: make python-virtualenv PYTHON_VIRTUALENV_DIR="venv"

- name: Restoring/Saving Cache
uses: actions/cache@v3.2.5
uses: actions/cache@v3.3.1
with:
path: "venv"
key: py-v1-deps-${{ runner.os }}-${{ steps.set_up_python.outputs.python-version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements_test.txt') }}-${{ hashFiles('requirements_release.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }}
Expand Down
8 changes: 8 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ History
unreleased (YYYY-MM-DD)
+++++++++++++++++++++++

0.6.0 (2023-03-14)
++++++++++++++++++

- (PR #218, 2023-03-08) Drop support for Python 3.7
- (PR #209, 2023-03-14) chore(deps): bump coverage from 7.1.0 to 7.2.1
- (PR #219, 2023-03-14) chore(deps): bump setuptools from 67.1.0 to 67.6.0
- (PR #220, 2023-03-14) chore: bump actions/cache from 3.2.5 to 3.3.1

0.5.0 (2023-03-07)
++++++++++++++++++

Expand Down
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ python-pip-install: ## Install Pip

docker-compose-run-test: export COMPOSE_FILE = docker-compose.yml:docker-compose.test.yml
docker-compose-run-test: ## Run tests with Docker Compose
docker-compose run --rm -- app-python3.7
docker-compose run --rm -- app-python3.8
docker-compose run --rm -- app-python3.9
docker-compose run --rm -- app-python3.10
4 changes: 0 additions & 4 deletions docker-compose.test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@ services:
source: .
target: /opt/app

app-python3.7:
<<: *services-app
image: docker.io/library/python:3.7.9

app-python3.8:
<<: *services-app
image: docker.io/library/python:3.8.6
Expand Down
2 changes: 1 addition & 1 deletion fd_dj_accounts/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
"""


__version__ = '0.5.0'
__version__ = '0.6.0'


default_app_config = 'fd_dj_accounts.apps.AccountsAppConfig'
6 changes: 1 addition & 5 deletions requirements_release.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
-r requirements.txt

bumpversion==0.5.3
setuptools==67.1.0
setuptools==67.6.0
twine==4.0.1
wheel==0.38.4

importlib-metadata==4.13.0 ; python_version < "3.8"
# via
# twine
2 changes: 1 addition & 1 deletion requirements_test.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
-r requirements.txt

codecov==2.1.11
coverage==7.1.0
coverage==7.2.1
flake8==3.8.4
mypy==1.1.1
psycopg2==2.9.3 --no-binary psycopg2
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ show-source = True
statistics = True

[mypy]
python_version = 3.7
python_version = 3.8
platform = linux

follow_imports = normal
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def get_version(*file_paths):
'docs',
'tests*',
]),
python_requires='>=3.7, <3.11',
python_requires='>=3.8, <3.11',
include_package_data=True,
package_data=_package_data,
install_requires=[
Expand All @@ -81,7 +81,6 @@ def get_version(*file_paths):
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
Expand Down
2 changes: 0 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[tox]
envlist =
py37,
py38,
py39,
py310,
Expand All @@ -12,7 +11,6 @@ commands = coverage run --rcfile=setup.cfg runtests.py tests
deps =
-r{toxinidir}/requirements_test.txt
basepython =
py37: python3.7
py38: python3.8
py39: python3.9
py310: python3.10

0 comments on commit 2584b35

Please sign in to comment.