Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates #10

Merged
merged 4 commits into from
Oct 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,10 @@ on:

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ test: env
env: .env/.up-to-date

doc: env
.env/bin/python setup.py build_sphinx -a -E
.env/bin/sphinx-build -a -W -E doc build/sphinx/html

.env/.up-to-date: setup.py pyproject.toml
.env/.up-to-date: pyproject.toml
python -m venv .env
.env/bin/pip install -e '.[testing,doc]'
touch $@
Expand Down
16 changes: 7 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
Vintage
=======
# Vintage

| | |
|-----------------------|------------------------------------------------------------------------------------|
| Build Status | ![Build Status](https://secure.travis-ci.org/getslash/vintage.png?branch=master,dev) |
| Supported Versions | ![Supported Versions](https://img.shields.io/pypi/pyversions/vintage.svg) |
| Latest Version | ![Latest Version](https://img.shields.io/pypi/v/vintage.svg) |
| | |
| ------------------ | -------------------------------------------------------------------------------------------------------- |
| Build Status | ![Build Status](https://github.com/getslash/vintage/actions/workflows/main.yml/badge.svg?branch=develop) |
| Supported Versions | ![Supported Versions](https://img.shields.io/pypi/pyversions/vintage.svg) |
| Latest Version | ![Latest Version](https://img.shields.io/pypi/v/vintage.svg) |

Vintage is a library geared at making it easy to deprecate methods, functions or other code elements
in your projects. It emits nicely formatted deprecation warnings, and helps you manage the
deprecation cycle easier.

For more information, see the full documentation at https://vintage.readthedocs.io

Licence
-------
## Licence

BSD3
1 change: 1 addition & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Changelog
* :feature:`-` Move CI to GitHub Actions (from Travis CI)
* :feature:`-` Support python version 3.8, 3.9, 3.10, 3.11
* :feature:`-` Drop support for python versions: 2.7, 3.4, 3.5, 3.6
* :feature:`-` Support python 3.12
* :release:`0.4.1 <07-05-2018>`
* :bug:`-` Set releases version to 3.6 only
* :release:`0.4.0 <28-06-2017>`
Expand Down
1 change: 0 additions & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@
'github_repo': 'vintage',
'github_button': True,
'github_banner': True,
'travis_button': 'getslash/vintage',
}
html_sidebars = {
'**': [
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"six",
Expand Down