Skip to content

Commit

Permalink
Merge pull request #69 from rhettre/feature/release-workflow
Browse files Browse the repository at this point in the history
Feature/release workflow
  • Loading branch information
rhettre authored Jul 27, 2024
2 parents 177bae2 + 8008e11 commit 0837138
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM amazonlinux:2023

# Install Python 3.9 and other necessary tools
RUN dnf install -y python3.8 python3.8-devel gcc zip && \
RUN dnf install -y python3.9 python3.9-devel gcc zip && \
dnf clean all

# Set up the work directory
Expand All @@ -12,13 +12,13 @@ WORKDIR /root
COPY . .

# Create a virtual environment and install dependencies
RUN python3.8 -m venv /root/venv && \
RUN python3.9 -m venv /root/venv && \
. /root/venv/bin/activate && \
pip install --upgrade pip && \
pip install \
--platform manylinux2014_x86_64 \
--implementation cp \
--python-version 3.8 \
--python-version 3.9 \
--only-binary=:all: --upgrade \
-r requirements.txt && \
pip install . && \
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,10 @@
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
python_requires='>=3.8',
python_requires='>=3.9',
)

0 comments on commit 0837138

Please sign in to comment.