Skip to content

Commit

Permalink
Version updates
Browse files Browse the repository at this point in the history
  • Loading branch information
paulyhedral committed Oct 5, 2024
1 parent 1b9902c commit 6012d9e
Show file tree
Hide file tree
Showing 11 changed files with 23 additions and 24 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/debug.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,22 @@
name: Debug

on:
create:
tags:
- '*'
release:
types:
- published
- created
push:
branches:
- '*'
tags:
- '*'

jobs:
debug:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: "Get Previous tag"
id: previoustag
uses: actions-ecosystem/action-get-latest-tag@v1
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,19 @@ jobs:
include:
- {
name: Linux,
python: "3.10",
python: "3.11",
os: ubuntu-latest,
tox: py310,
tox: py311,
}
# - {
# name: Windows,
# python: "3.10",
# python: "3.11",
# os: windows-latest,
# tox: py310,
# tox: py311,
# }
# - { name: Mac, python: "3.10", os: macos-latest, tox: py310 }
# - { name: Mac, python: "3.11", os: macos-latest, tox: py311 }
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/python-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:
include:
- {
name: Linux,
python: "3.10",
python: "3.11",
os: ubuntu-latest,
tox: py310,
tox: py311,
}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-update-reqs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
update-reqs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"
- name: update-reqs
run: |
pip install -U wheel setuptools pip-tools
Expand Down
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.10.13
3.11.10
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
#-------------------------------------------------------------------------------------------------------------

FROM python:3.10
FROM python:3.11

# Avoid warnings by switching to noninteractive
ENV DEBIAN_FRONTEND=noninteractive
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 SweetRPG
Copyright (c) 2023,4 SweetRPG

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ coverage:
pytest --cov-config .coveragerc --verbose --cov-report term --cov-report xml --cov=sweetrpg_catalog_api tests

publish:
pip install 'twine>=1.5.0'
pip install 'twine>=5.1.0'
python setup.py sdist bdist_wheel
twine upload dist/*
rm -fr build dist .egg sweetrpg_catalog_api.egg-info
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ classifiers =
packages = find:
package_dir = =src
include_package_data = true
python_required = >= 3.10
python_required = >= 3.11

[options.packages.find]
where = src
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
envlist =
clean
py{310}-{default}
py{311}-{default}
docs
report
skip_missing_interpreters = true
Expand All @@ -12,8 +12,8 @@ extras =
commands =
pytest --cov --cov-append --cov-report=term-missing -v tests --tb=short --basetemp={envtmpdir} {posargs:tests}
depends =
{py310}: clean
report: py310
{py311}: clean
report: py311

[testenv:default]

Expand Down

0 comments on commit 6012d9e

Please sign in to comment.