Skip to content

Commit

Permalink
Merge pull request #1 from Fovty/fix/repo-transfer
Browse files Browse the repository at this point in the history
Fix/repo transfer
  • Loading branch information
Fovty authored Mar 13, 2024
2 parents c1ac2c9 + 74aa3fb commit bae9bd4
Show file tree
Hide file tree
Showing 3 changed files with 78 additions and 22 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build-publish-package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build and Publish Python Package

on:
push:
tags:
- 'v*'

jobs:
build-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install poetry
run: pip install poetry
- name: Build Wheel
run: poetry build -f wheel
# Publishing to PyPI. Necessary?
# - name: Publish to PyPI
# uses: pypa/gh-action-pypi-publish@master
# with:
# user: __token__
# password: ${{ secrets.PYPI_API_TOKEN }}
28 changes: 28 additions & 0 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Python Tests

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Run pytest
run: poetry run pytest
46 changes: 24 additions & 22 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,37 +1,39 @@
pykube-ng
=========

.. image:: https://img.shields.io/travis/hjacobs/pykube.svg
:target: https://travis-ci.org/hjacobs/pykube
:alt: Build status
.. .. image:: https://img.shields.io/travis/hjacobs/pykube.svg
.. :target: https://travis-ci.org/hjacobs/pykube
.. :alt: Build status
.. image:: https://coveralls.io/repos/github/hjacobs/pykube/badge.svg?branch=master;_=1
:target: https://coveralls.io/github/hjacobs/pykube?branch=master
:alt: Code Coverage
.. .. image:: https://coveralls.io/repos/github/hjacobs/pykube/badge.svg?branch=master;_=1
.. :target: https://coveralls.io/github/hjacobs/pykube?branch=master
.. :alt: Code Coverage
.. image:: https://readthedocs.org/projects/pykube/badge/?version=latest
:target: https://pykube.readthedocs.io/
:alt: Documentation
.. .. image:: https://readthedocs.org/projects/pykube/badge/?version=latest
.. :target: https://pykube.readthedocs.io/
.. :alt: Documentation
.. image:: https://img.shields.io/pypi/v/pykube-ng.svg
:target: https://pypi.python.org/pypi/pykube-ng/
:alt: PyPI version
.. .. image:: https://img.shields.io/pypi/v/pykube-ng.svg
.. :target: https://pypi.python.org/pypi/pykube-ng/
.. :alt: PyPI version
.. image:: https://img.shields.io/pypi/pyversions/pykube-ng.svg
:target: https://pypi.python.org/pypi/pykube-ng/
:alt: Python versions
.. .. image:: https://img.shields.io/pypi/pyversions/pykube-ng.svg
.. :target: https://pypi.python.org/pypi/pykube-ng/
.. :alt: Python versions
.. .. image:: https://img.shields.io/badge/license-apache-blue.svg
.. :target: https://pypi.python.org/pypi/pykube-ng/
.. :alt: Apache License
.. .. image:: https://img.shields.io/badge/calver-YY.MM.MICRO-22bfda.svg
.. :target: http://calver.org/
.. :alt: CalVer
.. image:: https://img.shields.io/badge/license-apache-blue.svg
:target: https://pypi.python.org/pypi/pykube-ng/
:alt: Apache License
.. image:: https://img.shields.io/badge/calver-YY.MM.MICRO-22bfda.svg
:target: http://calver.org/
:alt: CalVer
Pykube (pykube-ng) is a lightweight Python 3.6+ client library for Kubernetes.

This is a fork of `kelproject/pykube <https://github.com/kelproject/pykube>`_ which is no longer maintained (archived). Here the original text of the pykube README:
This is a fork of `pykube-ng <https://codeberg.org/hjacobs/pykube-ng>`_ which is no longer maintained. Here the original text of the pykube README:

Kel is an open source Platform as a Service (PaaS) from Eldarion, Inc. that
makes it easy to manage web application deployment and hosting through the
Expand Down

0 comments on commit bae9bd4

Please sign in to comment.