Skip to content

Commit

Permalink
feat: pl_build 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hoffstadt committed Sep 5, 2024
1 parent abdae7c commit 7877558
Show file tree
Hide file tree
Showing 10 changed files with 2,135 additions and 2,011 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-build-tool.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
version:
description: 'pl_build version'
required: true
default: '1.0.0'
default: '1.0.1'

deploy:
description: 'Deploy (true will deploy to pypi)'
Expand All @@ -32,7 +32,7 @@ jobs:

steps:

- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
Expand Down
8 changes: 4 additions & 4 deletions pl_build/deploy_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from codecs import open
import os

wip_version = "0.11.0"
wip_version = "1.0.0"

def version_number():
"""This function reads the version number which is populated by github actions"""
Expand All @@ -24,7 +24,7 @@ def readme():
return 'Not Found'

setuptools.setup(
name="pilotlight_build",
name="pl_build",
version=version_number(),
license='MIT',
python_requires='>=3.6',
Expand All @@ -34,7 +34,7 @@ def readme():
long_description=readme(),
long_description_content_type="text/markdown",
url='https://github.com/PilotLightTech/pilotlight', # Optional
packages=['pilotlight_build'],
packages=['pl_build'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Education',
Expand All @@ -51,6 +51,6 @@ def readme():
'Topic :: Software Development :: Libraries :: Python Modules',
],
package_data={ # Optional
'pilotlight_build': ['README.md']
'pl_build': ['README.md']
}
)
Loading

0 comments on commit 7877558

Please sign in to comment.