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

version 0.0.2-beta #23

Merged
merged 1 commit into from
May 30, 2024
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 0 additions & 4 deletions .bumpversion.cfg

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
build:
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", 3.11]
python-version: [3.8, 3.9, "3.10", 3.11, 3.12]
os: [macos-11, macos-12, windows-latest, ubuntu-20.04, ubuntu-22.04]
runs-on: ${{ matrix.os }}
steps:
Expand Down
20 changes: 1 addition & 19 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.RELEASE_TOKEN }}
token: ${{ secrets.RELEASE_TOKEN }}
- name: Set up Python
uses: actions/setup-python@v2
with:
Expand All @@ -29,24 +29,6 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install build
pip install bumpversion
- run: |
initialTag=${{ github.event.release.tag_name }}
tag="${initialTag//[v]/}"
echo $tag
git remote update
git fetch
echo "finished fetching"
git checkout --track origin/master
echo "finished checkout"
git config --global user.email "[email protected]"
git config --global user.name "Github Actions"
echo "finished configuration"
bumpversion patch --new-version $tag
echo "bumpversion finished"
git add .
git commit -m "release $tag"
git push
- name: Build package
run: python -m build
- name: Publish package
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ var/
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
dev-requirements.txt.log

# Unit test / coverage reports
htmlcov/
Expand Down
6 changes: 0 additions & 6 deletions .gitlab-ci.yml

This file was deleted.

12 changes: 12 additions & 0 deletions .openapi-generator-ignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# IMPORTANT: this file is generated with the option `openapiGeneratorIgnoreList` enabled
# (--openapi-generator-ignore-list in CLI for example) so the entries below are pre-populated based
# on the input provided by the users and this file will be overwritten every time when the option is
# enabled (which is the exact opposite of the default behaviour to not overwrite
# .openapi-generator-ignore if the file exists).

# OpenAPI Generator Ignore
# Generated by openapi-generator https://github.com/openapitools/openapi-generator

Expand All @@ -21,3 +27,9 @@
#docs/*.md
# Then explicitly reverse the ignore rule for a single file:
#!docs/README.md

# The following entries are pre-populated based on the input obtained via
# the option `openapiGeneratorIgnoreList` (--openapi-generator-ignore-list in CLI for example).
.github/workflows/python.yml
.travis.yml
.gitlab-ci.yml
Loading
Loading